styles.css 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-68px;
  6. width:1525px;
  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. #u42910_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:798px;
  25. height:526px;
  26. }
  27. #u42910 {
  28. border-width:0px;
  29. position:absolute;
  30. left:795px;
  31. top:298px;
  32. width:798px;
  33. height:526px;
  34. display:flex;
  35. }
  36. #u42910 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u42910_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u42911 {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:0px;
  55. height:0px;
  56. }
  57. #u42912_div {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:680px;
  63. height:1198px;
  64. background:inherit;
  65. background-color:rgba(255, 255, 255, 1);
  66. box-sizing:border-box;
  67. border-width:1px;
  68. border-style:solid;
  69. border-color:rgba(215, 215, 215, 1);
  70. border-radius:0px;
  71. -moz-box-shadow:none;
  72. -webkit-box-shadow:none;
  73. box-shadow:none;
  74. }
  75. #u42912 {
  76. border-width:0px;
  77. position:absolute;
  78. left:68px;
  79. top:31px;
  80. width:680px;
  81. height:1198px;
  82. display:flex;
  83. }
  84. #u42912 .text {
  85. position:absolute;
  86. align-self:center;
  87. padding:2px 2px 2px 2px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u42912_text {
  92. border-width:0px;
  93. word-wrap:break-word;
  94. text-transform:none;
  95. visibility:hidden;
  96. }
  97. #u42913_div {
  98. border-width:0px;
  99. position:absolute;
  100. left:0px;
  101. top:0px;
  102. width:109px;
  103. height:30px;
  104. background:inherit;
  105. background-color:rgba(255, 255, 255, 0);
  106. border:none;
  107. border-radius:0px;
  108. -moz-box-shadow:none;
  109. -webkit-box-shadow:none;
  110. box-shadow:none;
  111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  112. font-weight:400;
  113. font-style:normal;
  114. font-size:18px;
  115. color:#000000;
  116. line-height:30px;
  117. }
  118. #u42913 {
  119. border-width:0px;
  120. position:absolute;
  121. left:88px;
  122. top:51px;
  123. width:109px;
  124. height:30px;
  125. display:flex;
  126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  127. font-weight:400;
  128. font-style:normal;
  129. font-size:18px;
  130. color:#000000;
  131. line-height:30px;
  132. }
  133. #u42913 .text {
  134. position:absolute;
  135. align-self:flex-start;
  136. padding:0px 0px 0px 0px;
  137. box-sizing:border-box;
  138. width:100%;
  139. }
  140. #u42913_text {
  141. border-width:0px;
  142. white-space:nowrap;
  143. text-transform:none;
  144. }
  145. #u42914 {
  146. border-width:0px;
  147. position:absolute;
  148. left:0px;
  149. top:0px;
  150. width:0px;
  151. height:0px;
  152. }
  153. #u42915_div {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:40px;
  159. height:40px;
  160. background:inherit;
  161. background-color:rgba(255, 255, 255, 0);
  162. border:none;
  163. border-top:0px;
  164. border-right:0px;
  165. border-bottom:0px;
  166. border-radius:0px;
  167. border-top-left-radius:0px;
  168. border-bottom-left-radius:0px;
  169. -moz-box-shadow:none;
  170. -webkit-box-shadow:none;
  171. box-shadow:none;
  172. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  173. font-weight:500;
  174. font-style:normal;
  175. font-size:18px;
  176. text-align:center;
  177. }
  178. #u42915 {
  179. border-width:0px;
  180. position:absolute;
  181. left:708px;
  182. top:31px;
  183. width:40px;
  184. height:40px;
  185. display:flex;
  186. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  187. font-weight:500;
  188. font-style:normal;
  189. font-size:18px;
  190. text-align:center;
  191. }
  192. #u42915 .text {
  193. position:absolute;
  194. align-self:center;
  195. padding:5px 10px 5px 0px;
  196. box-sizing:border-box;
  197. width:100%;
  198. }
  199. #u42915_text {
  200. border-width:0px;
  201. word-wrap:break-word;
  202. text-transform:none;
  203. }
  204. #u42916_img {
  205. border-width:0px;
  206. position:absolute;
  207. left:0px;
  208. top:0px;
  209. width:13px;
  210. height:17px;
  211. }
  212. #u42916 {
  213. border-width:0px;
  214. position:absolute;
  215. left:695px;
  216. top:43px;
  217. width:13px;
  218. height:17px;
  219. display:flex;
  220. }
  221. #u42916 .text {
  222. position:absolute;
  223. align-self:center;
  224. padding:2px 2px 2px 2px;
  225. box-sizing:border-box;
  226. width:100%;
  227. }
  228. #u42916_text {
  229. border-width:0px;
  230. word-wrap:break-word;
  231. text-transform:none;
  232. visibility:hidden;
  233. }
  234. #u42917 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:0px;
  239. width:0px;
  240. height:0px;
  241. }
  242. #u42918_div {
  243. border-width:0px;
  244. position:absolute;
  245. left:0px;
  246. top:0px;
  247. width:680px;
  248. height:60px;
  249. background:inherit;
  250. background-color:rgba(255, 255, 255, 1);
  251. box-sizing:border-box;
  252. border-width:1px;
  253. border-style:solid;
  254. border-color:rgba(215, 215, 215, 1);
  255. border-radius:0px;
  256. -moz-box-shadow:none;
  257. -webkit-box-shadow:none;
  258. box-shadow:none;
  259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  260. font-weight:400;
  261. font-style:normal;
  262. font-size:14px;
  263. color:#AAAAAA;
  264. text-align:center;
  265. line-height:30px;
  266. }
  267. #u42918 {
  268. border-width:0px;
  269. position:absolute;
  270. left:68px;
  271. top:1169px;
  272. width:680px;
  273. height:60px;
  274. display:flex;
  275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  276. font-weight:400;
  277. font-style:normal;
  278. font-size:14px;
  279. color:#AAAAAA;
  280. text-align:center;
  281. line-height:30px;
  282. }
  283. #u42918 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:5px 10px 5px 10px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u42918_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u42919_div {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:80px;
  302. height:30px;
  303. background:inherit;
  304. background-color:rgba(24, 144, 255, 1);
  305. border:none;
  306. border-radius:4px;
  307. -moz-box-shadow:none;
  308. -webkit-box-shadow:none;
  309. box-shadow:none;
  310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  311. font-weight:400;
  312. font-style:normal;
  313. font-size:14px;
  314. color:#FFFFFF;
  315. }
  316. #u42919 {
  317. border-width:0px;
  318. position:absolute;
  319. left:623px;
  320. top:1184px;
  321. width:80px;
  322. height:30px;
  323. display:flex;
  324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  325. font-weight:400;
  326. font-style:normal;
  327. font-size:14px;
  328. color:#FFFFFF;
  329. }
  330. #u42919 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u42919_text {
  338. border-width:0px;
  339. word-wrap:break-word;
  340. text-transform:none;
  341. }
  342. #u42920_div {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:80px;
  348. height:30px;
  349. background:inherit;
  350. background-color:rgba(255, 255, 255, 1);
  351. box-sizing:border-box;
  352. border-width:1px;
  353. border-style:solid;
  354. border-color:rgba(170, 170, 170, 1);
  355. border-radius:4px;
  356. -moz-box-shadow:none;
  357. -webkit-box-shadow:none;
  358. box-shadow:none;
  359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  360. font-weight:400;
  361. font-style:normal;
  362. font-size:14px;
  363. }
  364. #u42920 {
  365. border-width:0px;
  366. position:absolute;
  367. left:524px;
  368. top:1184px;
  369. width:80px;
  370. height:30px;
  371. display:flex;
  372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  373. font-weight:400;
  374. font-style:normal;
  375. font-size:14px;
  376. }
  377. #u42920 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u42920_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. }
  389. #u42921 {
  390. border-width:0px;
  391. position:absolute;
  392. left:0px;
  393. top:0px;
  394. width:0px;
  395. height:0px;
  396. }
  397. #u42922_div {
  398. border-width:0px;
  399. position:absolute;
  400. left:0px;
  401. top:0px;
  402. width:400px;
  403. height:40px;
  404. background:inherit;
  405. background-color:rgba(255, 255, 255, 1);
  406. box-sizing:border-box;
  407. border-width:1px;
  408. border-style:solid;
  409. border-color:rgba(170, 170, 170, 1);
  410. border-radius:4px;
  411. -moz-box-shadow:none;
  412. -webkit-box-shadow:none;
  413. box-shadow:none;
  414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  415. font-weight:400;
  416. font-style:normal;
  417. text-align:left;
  418. }
  419. #u42922 {
  420. border-width:0px;
  421. position:absolute;
  422. left:220px;
  423. top:448px;
  424. width:400px;
  425. height:40px;
  426. display:flex;
  427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  428. font-weight:400;
  429. font-style:normal;
  430. text-align:left;
  431. }
  432. #u42922 .text {
  433. position:absolute;
  434. align-self:center;
  435. padding:2px 2px 2px 10px;
  436. box-sizing:border-box;
  437. width:100%;
  438. }
  439. #u42922_text {
  440. border-width:0px;
  441. word-wrap:break-word;
  442. text-transform:none;
  443. visibility:hidden;
  444. }
  445. #u42923_input {
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:188px;
  450. height:31px;
  451. padding:2px 2px 2px 2px;
  452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  453. font-weight:400;
  454. font-style:normal;
  455. font-size:13px;
  456. letter-spacing:normal;
  457. color:#AAAAAA;
  458. vertical-align:none;
  459. text-align:left;
  460. text-transform:none;
  461. background-color:transparent;
  462. border-color:transparent;
  463. }
  464. #u42923_input.disabled {
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:188px;
  469. height:31px;
  470. padding:2px 2px 2px 2px;
  471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  472. font-weight:400;
  473. font-style:normal;
  474. font-size:13px;
  475. letter-spacing:normal;
  476. color:#AAAAAA;
  477. vertical-align:none;
  478. text-align:left;
  479. text-transform:none;
  480. background-color:transparent;
  481. border-color:transparent;
  482. }
  483. #u42923_div {
  484. border-width:0px;
  485. position:absolute;
  486. left:0px;
  487. top:0px;
  488. width:188px;
  489. height:31px;
  490. background:inherit;
  491. background-color:rgba(255, 255, 255, 0);
  492. border:none;
  493. border-radius:0px;
  494. -moz-box-shadow:none;
  495. -webkit-box-shadow:none;
  496. box-shadow:none;
  497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  498. font-weight:400;
  499. font-style:normal;
  500. color:#AAAAAA;
  501. }
  502. #u42923 {
  503. border-width:0px;
  504. position:absolute;
  505. left:230px;
  506. top:453px;
  507. width:188px;
  508. height:31px;
  509. display:flex;
  510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  511. font-weight:400;
  512. font-style:normal;
  513. color:#AAAAAA;
  514. }
  515. #u42923 .text {
  516. position:absolute;
  517. align-self:center;
  518. padding:2px 2px 2px 2px;
  519. box-sizing:border-box;
  520. width:100%;
  521. }
  522. #u42923_div.disabled {
  523. border-width:0px;
  524. position:absolute;
  525. left:0px;
  526. top:0px;
  527. width:188px;
  528. height:31px;
  529. background:inherit;
  530. background-color:rgba(240, 240, 240, 1);
  531. border:none;
  532. border-radius:0px;
  533. -moz-box-shadow:none;
  534. -webkit-box-shadow:none;
  535. box-shadow:none;
  536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  537. font-weight:400;
  538. font-style:normal;
  539. color:#AAAAAA;
  540. }
  541. #u42923.disabled {
  542. }
  543. #u42924_div {
  544. border-width:0px;
  545. position:absolute;
  546. left:0px;
  547. top:0px;
  548. width:63px;
  549. height:30px;
  550. background:inherit;
  551. background-color:rgba(255, 255, 255, 0);
  552. border:none;
  553. border-top:0px;
  554. border-right:0px;
  555. border-bottom:0px;
  556. border-radius:0px;
  557. border-top-left-radius:0px;
  558. border-bottom-left-radius:0px;
  559. -moz-box-shadow:none;
  560. -webkit-box-shadow:none;
  561. box-shadow:none;
  562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  563. font-weight:400;
  564. font-style:normal;
  565. font-size:14px;
  566. text-align:right;
  567. }
  568. #u42924 {
  569. border-width:0px;
  570. position:absolute;
  571. left:147px;
  572. top:453px;
  573. width:63px;
  574. height:30px;
  575. display:flex;
  576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  577. font-weight:400;
  578. font-style:normal;
  579. font-size:14px;
  580. text-align:right;
  581. }
  582. #u42924 .text {
  583. position:absolute;
  584. align-self:center;
  585. padding:5px 0px 5px 0px;
  586. box-sizing:border-box;
  587. width:100%;
  588. }
  589. #u42924_text {
  590. border-width:0px;
  591. white-space:nowrap;
  592. text-transform:none;
  593. }
  594. #u42925 {
  595. border-width:0px;
  596. position:absolute;
  597. left:0px;
  598. top:0px;
  599. width:0px;
  600. height:0px;
  601. }
  602. #u42926_div {
  603. border-width:0px;
  604. position:absolute;
  605. left:0px;
  606. top:0px;
  607. width:400px;
  608. height:40px;
  609. background:inherit;
  610. background-color:rgba(255, 255, 255, 1);
  611. box-sizing:border-box;
  612. border-width:1px;
  613. border-style:solid;
  614. border-color:rgba(170, 170, 170, 1);
  615. border-radius:4px;
  616. -moz-box-shadow:none;
  617. -webkit-box-shadow:none;
  618. box-shadow:none;
  619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  620. font-weight:400;
  621. font-style:normal;
  622. text-align:left;
  623. }
  624. #u42926 {
  625. border-width:0px;
  626. position:absolute;
  627. left:220px;
  628. top:498px;
  629. width:400px;
  630. height:40px;
  631. display:flex;
  632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  633. font-weight:400;
  634. font-style:normal;
  635. text-align:left;
  636. }
  637. #u42926 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 10px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u42926_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u42927_input {
  651. position:absolute;
  652. left:0px;
  653. top:0px;
  654. width:188px;
  655. height:31px;
  656. padding:2px 2px 2px 2px;
  657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  658. font-weight:400;
  659. font-style:normal;
  660. font-size:13px;
  661. letter-spacing:normal;
  662. color:#AAAAAA;
  663. vertical-align:none;
  664. text-align:left;
  665. text-transform:none;
  666. background-color:transparent;
  667. border-color:transparent;
  668. }
  669. #u42927_input.disabled {
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:188px;
  674. height:31px;
  675. padding:2px 2px 2px 2px;
  676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  677. font-weight:400;
  678. font-style:normal;
  679. font-size:13px;
  680. letter-spacing:normal;
  681. color:#AAAAAA;
  682. vertical-align:none;
  683. text-align:left;
  684. text-transform:none;
  685. background-color:transparent;
  686. border-color:transparent;
  687. }
  688. #u42927_div {
  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(255, 255, 255, 0);
  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. #u42927 {
  708. border-width:0px;
  709. position:absolute;
  710. left:230px;
  711. top:503px;
  712. width:188px;
  713. height:31px;
  714. display:flex;
  715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  716. font-weight:400;
  717. font-style:normal;
  718. color:#AAAAAA;
  719. }
  720. #u42927 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u42927_div.disabled {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:188px;
  733. height:31px;
  734. background:inherit;
  735. background-color:rgba(240, 240, 240, 1);
  736. border:none;
  737. border-radius:0px;
  738. -moz-box-shadow:none;
  739. -webkit-box-shadow:none;
  740. box-shadow:none;
  741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  742. font-weight:400;
  743. font-style:normal;
  744. color:#AAAAAA;
  745. }
  746. #u42927.disabled {
  747. }
  748. #u42928_div {
  749. border-width:0px;
  750. position:absolute;
  751. left:0px;
  752. top:0px;
  753. width:64px;
  754. height:30px;
  755. background:inherit;
  756. background-color:rgba(255, 255, 255, 0);
  757. border:none;
  758. border-top:0px;
  759. border-right:0px;
  760. border-bottom:0px;
  761. border-radius:0px;
  762. border-top-left-radius:0px;
  763. border-bottom-left-radius:0px;
  764. -moz-box-shadow:none;
  765. -webkit-box-shadow:none;
  766. box-shadow:none;
  767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  768. font-weight:400;
  769. font-style:normal;
  770. font-size:14px;
  771. text-align:right;
  772. }
  773. #u42928 {
  774. border-width:0px;
  775. position:absolute;
  776. left:146px;
  777. top:503px;
  778. width:64px;
  779. height:30px;
  780. display:flex;
  781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  782. font-weight:400;
  783. font-style:normal;
  784. font-size:14px;
  785. text-align:right;
  786. }
  787. #u42928 .text {
  788. position:absolute;
  789. align-self:center;
  790. padding:5px 0px 5px 0px;
  791. box-sizing:border-box;
  792. width:100%;
  793. }
  794. #u42928_text {
  795. border-width:0px;
  796. white-space:nowrap;
  797. text-transform:none;
  798. }
  799. #u42929 {
  800. border-width:0px;
  801. position:absolute;
  802. left:0px;
  803. top:0px;
  804. width:0px;
  805. height:0px;
  806. }
  807. #u42930_div {
  808. border-width:0px;
  809. position:absolute;
  810. left:0px;
  811. top:0px;
  812. width:400px;
  813. height:40px;
  814. background:inherit;
  815. background-color:rgba(255, 255, 255, 1);
  816. box-sizing:border-box;
  817. border-width:1px;
  818. border-style:solid;
  819. border-color:rgba(170, 170, 170, 1);
  820. border-radius:4px;
  821. -moz-box-shadow:none;
  822. -webkit-box-shadow:none;
  823. box-shadow:none;
  824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  825. font-weight:400;
  826. font-style:normal;
  827. text-align:left;
  828. }
  829. #u42930 {
  830. border-width:0px;
  831. position:absolute;
  832. left:220px;
  833. top:748px;
  834. width:400px;
  835. height:40px;
  836. display:flex;
  837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  838. font-weight:400;
  839. font-style:normal;
  840. text-align:left;
  841. }
  842. #u42930 .text {
  843. position:absolute;
  844. align-self:center;
  845. padding:2px 2px 2px 10px;
  846. box-sizing:border-box;
  847. width:100%;
  848. }
  849. #u42930_text {
  850. border-width:0px;
  851. word-wrap:break-word;
  852. text-transform:none;
  853. visibility:hidden;
  854. }
  855. #u42931_input {
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:188px;
  860. height:31px;
  861. padding:2px 2px 2px 2px;
  862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  863. font-weight:400;
  864. font-style:normal;
  865. font-size:13px;
  866. letter-spacing:normal;
  867. color:#AAAAAA;
  868. vertical-align:none;
  869. text-align:left;
  870. text-transform:none;
  871. background-color:transparent;
  872. border-color:transparent;
  873. }
  874. #u42931_input.disabled {
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:188px;
  879. height:31px;
  880. padding:2px 2px 2px 2px;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:13px;
  885. letter-spacing:normal;
  886. color:#AAAAAA;
  887. vertical-align:none;
  888. text-align:left;
  889. text-transform:none;
  890. background-color:transparent;
  891. border-color:transparent;
  892. }
  893. #u42931_div {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:188px;
  899. height:31px;
  900. background:inherit;
  901. background-color:rgba(255, 255, 255, 0);
  902. border:none;
  903. border-radius:0px;
  904. -moz-box-shadow:none;
  905. -webkit-box-shadow:none;
  906. box-shadow:none;
  907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  908. font-weight:400;
  909. font-style:normal;
  910. color:#AAAAAA;
  911. }
  912. #u42931 {
  913. border-width:0px;
  914. position:absolute;
  915. left:230px;
  916. top:753px;
  917. width:188px;
  918. height:31px;
  919. display:flex;
  920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  921. font-weight:400;
  922. font-style:normal;
  923. color:#AAAAAA;
  924. }
  925. #u42931 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u42931_div.disabled {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:188px;
  938. height:31px;
  939. background:inherit;
  940. background-color:rgba(240, 240, 240, 1);
  941. border:none;
  942. border-radius:0px;
  943. -moz-box-shadow:none;
  944. -webkit-box-shadow:none;
  945. box-shadow:none;
  946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. color:#AAAAAA;
  950. }
  951. #u42931.disabled {
  952. }
  953. #u42932_div {
  954. border-width:0px;
  955. position:absolute;
  956. left:0px;
  957. top:0px;
  958. width:64px;
  959. height:30px;
  960. background:inherit;
  961. background-color:rgba(255, 255, 255, 0);
  962. border:none;
  963. border-top:0px;
  964. border-right:0px;
  965. border-bottom:0px;
  966. border-radius:0px;
  967. border-top-left-radius:0px;
  968. border-bottom-left-radius:0px;
  969. -moz-box-shadow:none;
  970. -webkit-box-shadow:none;
  971. box-shadow:none;
  972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  973. font-weight:400;
  974. font-style:normal;
  975. font-size:14px;
  976. text-align:right;
  977. }
  978. #u42932 {
  979. border-width:0px;
  980. position:absolute;
  981. left:146px;
  982. top:753px;
  983. width:64px;
  984. height:30px;
  985. display:flex;
  986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  987. font-weight:400;
  988. font-style:normal;
  989. font-size:14px;
  990. text-align:right;
  991. }
  992. #u42932 .text {
  993. position:absolute;
  994. align-self:center;
  995. padding:5px 0px 5px 0px;
  996. box-sizing:border-box;
  997. width:100%;
  998. }
  999. #u42932_text {
  1000. border-width:0px;
  1001. white-space:nowrap;
  1002. text-transform:none;
  1003. }
  1004. #u42933 {
  1005. border-width:0px;
  1006. position:absolute;
  1007. left:0px;
  1008. top:0px;
  1009. width:0px;
  1010. height:0px;
  1011. }
  1012. #u42934_div {
  1013. border-width:0px;
  1014. position:absolute;
  1015. left:0px;
  1016. top:0px;
  1017. width:400px;
  1018. height:40px;
  1019. background:inherit;
  1020. background-color:rgba(255, 255, 255, 1);
  1021. box-sizing:border-box;
  1022. border-width:1px;
  1023. border-style:solid;
  1024. border-color:rgba(170, 170, 170, 1);
  1025. border-radius:4px;
  1026. -moz-box-shadow:none;
  1027. -webkit-box-shadow:none;
  1028. box-shadow:none;
  1029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1030. font-weight:400;
  1031. font-style:normal;
  1032. text-align:left;
  1033. }
  1034. #u42934 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:220px;
  1038. top:548px;
  1039. width:400px;
  1040. height:40px;
  1041. display:flex;
  1042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1043. font-weight:400;
  1044. font-style:normal;
  1045. text-align:left;
  1046. }
  1047. #u42934 .text {
  1048. position:absolute;
  1049. align-self:center;
  1050. padding:2px 2px 2px 10px;
  1051. box-sizing:border-box;
  1052. width:100%;
  1053. }
  1054. #u42934_text {
  1055. border-width:0px;
  1056. word-wrap:break-word;
  1057. text-transform:none;
  1058. visibility:hidden;
  1059. }
  1060. #u42935_input {
  1061. position:absolute;
  1062. left:0px;
  1063. top:0px;
  1064. width:188px;
  1065. height:31px;
  1066. padding:2px 2px 2px 2px;
  1067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:13px;
  1071. letter-spacing:normal;
  1072. color:#AAAAAA;
  1073. vertical-align:none;
  1074. text-align:left;
  1075. text-transform:none;
  1076. background-color:transparent;
  1077. border-color:transparent;
  1078. }
  1079. #u42935_input.disabled {
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:188px;
  1084. height:31px;
  1085. padding:2px 2px 2px 2px;
  1086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1087. font-weight:400;
  1088. font-style:normal;
  1089. font-size:13px;
  1090. letter-spacing:normal;
  1091. color:#AAAAAA;
  1092. vertical-align:none;
  1093. text-align:left;
  1094. text-transform:none;
  1095. background-color:transparent;
  1096. border-color:transparent;
  1097. }
  1098. #u42935_div {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:188px;
  1104. height:31px;
  1105. background:inherit;
  1106. background-color:rgba(255, 255, 255, 0);
  1107. border:none;
  1108. border-radius:0px;
  1109. -moz-box-shadow:none;
  1110. -webkit-box-shadow:none;
  1111. box-shadow:none;
  1112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1113. font-weight:400;
  1114. font-style:normal;
  1115. color:#AAAAAA;
  1116. }
  1117. #u42935 {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:230px;
  1121. top:553px;
  1122. width:188px;
  1123. height:31px;
  1124. display:flex;
  1125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1126. font-weight:400;
  1127. font-style:normal;
  1128. color:#AAAAAA;
  1129. }
  1130. #u42935 .text {
  1131. position:absolute;
  1132. align-self:center;
  1133. padding:2px 2px 2px 2px;
  1134. box-sizing:border-box;
  1135. width:100%;
  1136. }
  1137. #u42935_div.disabled {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:0px;
  1141. top:0px;
  1142. width:188px;
  1143. height:31px;
  1144. background:inherit;
  1145. background-color:rgba(240, 240, 240, 1);
  1146. border:none;
  1147. border-radius:0px;
  1148. -moz-box-shadow:none;
  1149. -webkit-box-shadow:none;
  1150. box-shadow:none;
  1151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1152. font-weight:400;
  1153. font-style:normal;
  1154. color:#AAAAAA;
  1155. }
  1156. #u42935.disabled {
  1157. }
  1158. #u42936_div {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:0px;
  1162. top:0px;
  1163. width:64px;
  1164. height:30px;
  1165. background:inherit;
  1166. background-color:rgba(255, 255, 255, 0);
  1167. border:none;
  1168. border-top:0px;
  1169. border-right:0px;
  1170. border-bottom:0px;
  1171. border-radius:0px;
  1172. border-top-left-radius:0px;
  1173. border-bottom-left-radius:0px;
  1174. -moz-box-shadow:none;
  1175. -webkit-box-shadow:none;
  1176. box-shadow:none;
  1177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1178. font-weight:400;
  1179. font-style:normal;
  1180. font-size:14px;
  1181. text-align:right;
  1182. }
  1183. #u42936 {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:146px;
  1187. top:553px;
  1188. width:64px;
  1189. height:30px;
  1190. display:flex;
  1191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1192. font-weight:400;
  1193. font-style:normal;
  1194. font-size:14px;
  1195. text-align:right;
  1196. }
  1197. #u42936 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:5px 0px 5px 0px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u42936_text {
  1205. border-width:0px;
  1206. white-space:nowrap;
  1207. text-transform:none;
  1208. }
  1209. #u42937_div {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:0px;
  1213. top:0px;
  1214. width:78px;
  1215. height:30px;
  1216. background:inherit;
  1217. background-color:rgba(255, 255, 255, 0);
  1218. border:none;
  1219. border-top:0px;
  1220. border-right:0px;
  1221. border-bottom:0px;
  1222. border-radius:0px;
  1223. border-top-left-radius:0px;
  1224. border-bottom-left-radius:0px;
  1225. -moz-box-shadow:none;
  1226. -webkit-box-shadow:none;
  1227. box-shadow:none;
  1228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1229. font-weight:400;
  1230. font-style:normal;
  1231. font-size:14px;
  1232. text-align:right;
  1233. }
  1234. #u42937 {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:132px;
  1238. top:603px;
  1239. width:78px;
  1240. height:30px;
  1241. display:flex;
  1242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1243. font-weight:400;
  1244. font-style:normal;
  1245. font-size:14px;
  1246. text-align:right;
  1247. }
  1248. #u42937 .text {
  1249. position:absolute;
  1250. align-self:center;
  1251. padding:5px 0px 5px 0px;
  1252. box-sizing:border-box;
  1253. width:100%;
  1254. }
  1255. #u42937_text {
  1256. border-width:0px;
  1257. white-space:nowrap;
  1258. text-transform:none;
  1259. }
  1260. #u42938_div {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:0px;
  1264. top:0px;
  1265. width:78px;
  1266. height:30px;
  1267. background:inherit;
  1268. background-color:rgba(255, 255, 255, 0);
  1269. border:none;
  1270. border-top:0px;
  1271. border-right:0px;
  1272. border-bottom:0px;
  1273. border-radius:0px;
  1274. border-top-left-radius:0px;
  1275. border-bottom-left-radius:0px;
  1276. -moz-box-shadow:none;
  1277. -webkit-box-shadow:none;
  1278. box-shadow:none;
  1279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1280. font-weight:400;
  1281. font-style:normal;
  1282. font-size:14px;
  1283. text-align:right;
  1284. }
  1285. #u42938 {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:132px;
  1289. top:653px;
  1290. width:78px;
  1291. height:30px;
  1292. display:flex;
  1293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1294. font-weight:400;
  1295. font-style:normal;
  1296. font-size:14px;
  1297. text-align:right;
  1298. }
  1299. #u42938 .text {
  1300. position:absolute;
  1301. align-self:center;
  1302. padding:5px 0px 5px 0px;
  1303. box-sizing:border-box;
  1304. width:100%;
  1305. }
  1306. #u42938_text {
  1307. border-width:0px;
  1308. white-space:nowrap;
  1309. text-transform:none;
  1310. }
  1311. #u42939 {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:0px;
  1317. height:0px;
  1318. }
  1319. #u42940_div {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:400px;
  1325. height:40px;
  1326. background:inherit;
  1327. background-color:rgba(255, 255, 255, 1);
  1328. box-sizing:border-box;
  1329. border-width:1px;
  1330. border-style:solid;
  1331. border-color:rgba(170, 170, 170, 1);
  1332. border-radius:4px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. }
  1337. #u42940 {
  1338. border-width:0px;
  1339. position:absolute;
  1340. left:220px;
  1341. top:598px;
  1342. width:400px;
  1343. height:40px;
  1344. display:flex;
  1345. }
  1346. #u42940 .text {
  1347. position:absolute;
  1348. align-self:center;
  1349. padding:2px 2px 2px 0px;
  1350. box-sizing:border-box;
  1351. width:100%;
  1352. }
  1353. #u42940_text {
  1354. border-width:0px;
  1355. word-wrap:break-word;
  1356. text-transform:none;
  1357. visibility:hidden;
  1358. }
  1359. #u42941_input {
  1360. position:absolute;
  1361. left:0px;
  1362. top:0px;
  1363. width:380px;
  1364. height:30px;
  1365. padding:2px 2px 2px 0px;
  1366. font-family:'ArialMT', 'Arial', sans-serif;
  1367. font-weight:400;
  1368. font-style:normal;
  1369. font-size:13px;
  1370. letter-spacing:normal;
  1371. color:#AAAAAA;
  1372. vertical-align:none;
  1373. text-align:left;
  1374. text-transform:none;
  1375. background-color:transparent;
  1376. border-color:transparent;
  1377. }
  1378. #u42941_input.disabled {
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:380px;
  1383. height:30px;
  1384. padding:2px 2px 2px 0px;
  1385. font-family:'ArialMT', 'Arial', sans-serif;
  1386. font-weight:400;
  1387. font-style:normal;
  1388. font-size:13px;
  1389. letter-spacing:normal;
  1390. color:#AAAAAA;
  1391. vertical-align:none;
  1392. text-align:left;
  1393. text-transform:none;
  1394. background-color:transparent;
  1395. border-color:transparent;
  1396. }
  1397. #u42941_div {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:380px;
  1403. height:30px;
  1404. background:inherit;
  1405. background-color:rgba(255, 255, 255, 1);
  1406. border:none;
  1407. border-radius:0px;
  1408. -moz-box-shadow:none;
  1409. -webkit-box-shadow:none;
  1410. box-shadow:none;
  1411. color:#AAAAAA;
  1412. }
  1413. #u42941 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:230px;
  1417. top:602px;
  1418. width:380px;
  1419. height:30px;
  1420. display:flex;
  1421. color:#AAAAAA;
  1422. }
  1423. #u42941 .text {
  1424. position:absolute;
  1425. align-self:flex-start;
  1426. padding:2px 2px 2px 0px;
  1427. box-sizing:border-box;
  1428. width:100%;
  1429. }
  1430. #u42941_div.disabled {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:380px;
  1436. height:30px;
  1437. background:inherit;
  1438. background-color:rgba(240, 240, 240, 1);
  1439. border:none;
  1440. border-radius:0px;
  1441. -moz-box-shadow:none;
  1442. -webkit-box-shadow:none;
  1443. box-shadow:none;
  1444. color:#AAAAAA;
  1445. }
  1446. #u42941.disabled {
  1447. }
  1448. .u42941_input_option {
  1449. }
  1450. #u42942 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:0px;
  1454. top:0px;
  1455. width:0px;
  1456. height:0px;
  1457. }
  1458. #u42943_div {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:400px;
  1464. height:40px;
  1465. background:inherit;
  1466. background-color:rgba(255, 255, 255, 1);
  1467. box-sizing:border-box;
  1468. border-width:1px;
  1469. border-style:solid;
  1470. border-color:rgba(170, 170, 170, 1);
  1471. border-radius:4px;
  1472. -moz-box-shadow:none;
  1473. -webkit-box-shadow:none;
  1474. box-shadow:none;
  1475. }
  1476. #u42943 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:220px;
  1480. top:648px;
  1481. width:400px;
  1482. height:40px;
  1483. display:flex;
  1484. }
  1485. #u42943 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 0px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u42943_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u42944_input {
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:380px;
  1503. height:30px;
  1504. padding:2px 2px 2px 0px;
  1505. font-family:'ArialMT', 'Arial', sans-serif;
  1506. font-weight:400;
  1507. font-style:normal;
  1508. font-size:13px;
  1509. letter-spacing:normal;
  1510. color:#AAAAAA;
  1511. vertical-align:none;
  1512. text-align:left;
  1513. text-transform:none;
  1514. background-color:transparent;
  1515. border-color:transparent;
  1516. }
  1517. #u42944_input.disabled {
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:380px;
  1522. height:30px;
  1523. padding:2px 2px 2px 0px;
  1524. font-family:'ArialMT', 'Arial', sans-serif;
  1525. font-weight:400;
  1526. font-style:normal;
  1527. font-size:13px;
  1528. letter-spacing:normal;
  1529. color:#AAAAAA;
  1530. vertical-align:none;
  1531. text-align:left;
  1532. text-transform:none;
  1533. background-color:transparent;
  1534. border-color:transparent;
  1535. }
  1536. #u42944_div {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:0px;
  1540. top:0px;
  1541. width:380px;
  1542. height:30px;
  1543. background:inherit;
  1544. background-color:rgba(255, 255, 255, 1);
  1545. border:none;
  1546. border-radius:0px;
  1547. -moz-box-shadow:none;
  1548. -webkit-box-shadow:none;
  1549. box-shadow:none;
  1550. color:#AAAAAA;
  1551. }
  1552. #u42944 {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:230px;
  1556. top:652px;
  1557. width:380px;
  1558. height:30px;
  1559. display:flex;
  1560. color:#AAAAAA;
  1561. }
  1562. #u42944 .text {
  1563. position:absolute;
  1564. align-self:flex-start;
  1565. padding:2px 2px 2px 0px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u42944_div.disabled {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:0px;
  1573. top:0px;
  1574. width:380px;
  1575. height:30px;
  1576. background:inherit;
  1577. background-color:rgba(240, 240, 240, 1);
  1578. border:none;
  1579. border-radius:0px;
  1580. -moz-box-shadow:none;
  1581. -webkit-box-shadow:none;
  1582. box-shadow:none;
  1583. color:#AAAAAA;
  1584. }
  1585. #u42944.disabled {
  1586. }
  1587. .u42944_input_option {
  1588. }
  1589. #u42945 {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:0px;
  1593. top:0px;
  1594. width:0px;
  1595. height:0px;
  1596. }
  1597. #u42946_div {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:400px;
  1603. height:40px;
  1604. background:inherit;
  1605. background-color:rgba(255, 255, 255, 1);
  1606. box-sizing:border-box;
  1607. border-width:1px;
  1608. border-style:solid;
  1609. border-color:rgba(170, 170, 170, 1);
  1610. border-radius:4px;
  1611. -moz-box-shadow:none;
  1612. -webkit-box-shadow:none;
  1613. box-shadow:none;
  1614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1615. font-weight:400;
  1616. font-style:normal;
  1617. text-align:left;
  1618. }
  1619. #u42946 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:220px;
  1623. top:798px;
  1624. width:400px;
  1625. height:40px;
  1626. display:flex;
  1627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1628. font-weight:400;
  1629. font-style:normal;
  1630. text-align:left;
  1631. }
  1632. #u42946 .text {
  1633. position:absolute;
  1634. align-self:center;
  1635. padding:2px 2px 2px 10px;
  1636. box-sizing:border-box;
  1637. width:100%;
  1638. }
  1639. #u42946_text {
  1640. border-width:0px;
  1641. word-wrap:break-word;
  1642. text-transform:none;
  1643. visibility:hidden;
  1644. }
  1645. #u42947_input {
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:188px;
  1650. height:31px;
  1651. padding:2px 2px 2px 2px;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:13px;
  1656. letter-spacing:normal;
  1657. color:#AAAAAA;
  1658. vertical-align:none;
  1659. text-align:left;
  1660. text-transform:none;
  1661. background-color:transparent;
  1662. border-color:transparent;
  1663. }
  1664. #u42947_input.disabled {
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:188px;
  1669. height:31px;
  1670. padding:2px 2px 2px 2px;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. font-size:13px;
  1675. letter-spacing:normal;
  1676. color:#AAAAAA;
  1677. vertical-align:none;
  1678. text-align:left;
  1679. text-transform:none;
  1680. background-color:transparent;
  1681. border-color:transparent;
  1682. }
  1683. #u42947_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:188px;
  1689. height:31px;
  1690. background:inherit;
  1691. background-color:rgba(255, 255, 255, 0);
  1692. border:none;
  1693. border-radius:0px;
  1694. -moz-box-shadow:none;
  1695. -webkit-box-shadow:none;
  1696. box-shadow:none;
  1697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1698. font-weight:400;
  1699. font-style:normal;
  1700. color:#AAAAAA;
  1701. }
  1702. #u42947 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:230px;
  1706. top:803px;
  1707. width:188px;
  1708. height:31px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. color:#AAAAAA;
  1714. }
  1715. #u42947 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:2px 2px 2px 2px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u42947_div.disabled {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:188px;
  1728. height:31px;
  1729. background:inherit;
  1730. background-color:rgba(240, 240, 240, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. color:#AAAAAA;
  1740. }
  1741. #u42947.disabled {
  1742. }
  1743. #u42948_div {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:50px;
  1749. height:30px;
  1750. background:inherit;
  1751. background-color:rgba(255, 255, 255, 0);
  1752. border:none;
  1753. border-top:0px;
  1754. border-right:0px;
  1755. border-bottom:0px;
  1756. border-radius:0px;
  1757. border-top-left-radius:0px;
  1758. border-bottom-left-radius:0px;
  1759. -moz-box-shadow:none;
  1760. -webkit-box-shadow:none;
  1761. box-shadow:none;
  1762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:14px;
  1766. text-align:right;
  1767. }
  1768. #u42948 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:160px;
  1772. top:803px;
  1773. width:50px;
  1774. height:30px;
  1775. display:flex;
  1776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1777. font-weight:400;
  1778. font-style:normal;
  1779. font-size:14px;
  1780. text-align:right;
  1781. }
  1782. #u42948 .text {
  1783. position:absolute;
  1784. align-self:center;
  1785. padding:5px 0px 5px 0px;
  1786. box-sizing:border-box;
  1787. width:100%;
  1788. }
  1789. #u42948_text {
  1790. border-width:0px;
  1791. white-space:nowrap;
  1792. text-transform:none;
  1793. }
  1794. #u42949_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:71px;
  1800. height:30px;
  1801. background:inherit;
  1802. background-color:rgba(255, 255, 255, 0);
  1803. border:none;
  1804. border-top:0px;
  1805. border-right:0px;
  1806. border-bottom:0px;
  1807. border-radius:0px;
  1808. border-top-left-radius:0px;
  1809. border-bottom-left-radius:0px;
  1810. -moz-box-shadow:none;
  1811. -webkit-box-shadow:none;
  1812. box-shadow:none;
  1813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:14px;
  1817. text-align:right;
  1818. }
  1819. #u42949 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:139px;
  1823. top:703px;
  1824. width:71px;
  1825. height:30px;
  1826. display:flex;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:14px;
  1831. text-align:right;
  1832. }
  1833. #u42949 .text {
  1834. position:absolute;
  1835. align-self:center;
  1836. padding:5px 0px 5px 0px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u42949_text {
  1841. border-width:0px;
  1842. white-space:nowrap;
  1843. text-transform:none;
  1844. }
  1845. #u42950 {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:0px;
  1851. height:0px;
  1852. }
  1853. #u42951_div {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:400px;
  1859. height:40px;
  1860. background:inherit;
  1861. background-color:rgba(255, 255, 255, 1);
  1862. box-sizing:border-box;
  1863. border-width:1px;
  1864. border-style:solid;
  1865. border-color:rgba(170, 170, 170, 1);
  1866. border-radius:4px;
  1867. -moz-box-shadow:none;
  1868. -webkit-box-shadow:none;
  1869. box-shadow:none;
  1870. }
  1871. #u42951 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:220px;
  1875. top:698px;
  1876. width:400px;
  1877. height:40px;
  1878. display:flex;
  1879. }
  1880. #u42951 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 0px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u42951_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. visibility:hidden;
  1892. }
  1893. #u42952_input {
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:380px;
  1898. height:30px;
  1899. padding:2px 2px 2px 0px;
  1900. font-family:'ArialMT', 'Arial', sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:13px;
  1904. letter-spacing:normal;
  1905. color:#AAAAAA;
  1906. vertical-align:none;
  1907. text-align:left;
  1908. text-transform:none;
  1909. background-color:transparent;
  1910. border-color:transparent;
  1911. }
  1912. #u42952_input.disabled {
  1913. position:absolute;
  1914. left:0px;
  1915. top:0px;
  1916. width:380px;
  1917. height:30px;
  1918. padding:2px 2px 2px 0px;
  1919. font-family:'ArialMT', 'Arial', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:13px;
  1923. letter-spacing:normal;
  1924. color:#AAAAAA;
  1925. vertical-align:none;
  1926. text-align:left;
  1927. text-transform:none;
  1928. background-color:transparent;
  1929. border-color:transparent;
  1930. }
  1931. #u42952_div {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:380px;
  1937. height:30px;
  1938. background:inherit;
  1939. background-color:rgba(255, 255, 255, 1);
  1940. border:none;
  1941. border-radius:0px;
  1942. -moz-box-shadow:none;
  1943. -webkit-box-shadow:none;
  1944. box-shadow:none;
  1945. color:#AAAAAA;
  1946. }
  1947. #u42952 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:230px;
  1951. top:702px;
  1952. width:380px;
  1953. height:30px;
  1954. display:flex;
  1955. color:#AAAAAA;
  1956. }
  1957. #u42952 .text {
  1958. position:absolute;
  1959. align-self:flex-start;
  1960. padding:2px 2px 2px 0px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u42952_div.disabled {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:380px;
  1970. height:30px;
  1971. background:inherit;
  1972. background-color:rgba(240, 240, 240, 1);
  1973. border:none;
  1974. border-radius:0px;
  1975. -moz-box-shadow:none;
  1976. -webkit-box-shadow:none;
  1977. box-shadow:none;
  1978. color:#AAAAAA;
  1979. }
  1980. #u42952.disabled {
  1981. }
  1982. .u42952_input_option {
  1983. }
  1984. #u42953_div {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:78px;
  1990. height:30px;
  1991. background:inherit;
  1992. background-color:rgba(255, 255, 255, 0);
  1993. border:none;
  1994. border-top:0px;
  1995. border-right:0px;
  1996. border-bottom:0px;
  1997. border-radius:0px;
  1998. border-top-left-radius:0px;
  1999. border-bottom-left-radius:0px;
  2000. -moz-box-shadow:none;
  2001. -webkit-box-shadow:none;
  2002. box-shadow:none;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:14px;
  2007. text-align:right;
  2008. }
  2009. #u42953 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:132px;
  2013. top:105px;
  2014. width:78px;
  2015. height:30px;
  2016. display:flex;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:14px;
  2021. text-align:right;
  2022. }
  2023. #u42953 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:5px 0px 5px 0px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u42953_text {
  2031. border-width:0px;
  2032. white-space:nowrap;
  2033. text-transform:none;
  2034. }
  2035. #u42954 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:0px;
  2041. height:0px;
  2042. }
  2043. #u42955_div {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:400px;
  2049. height:40px;
  2050. background:inherit;
  2051. background-color:rgba(255, 255, 255, 1);
  2052. box-sizing:border-box;
  2053. border-width:1px;
  2054. border-style:solid;
  2055. border-color:rgba(170, 170, 170, 1);
  2056. border-radius:4px;
  2057. -moz-box-shadow:none;
  2058. -webkit-box-shadow:none;
  2059. box-shadow:none;
  2060. }
  2061. #u42955 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:220px;
  2065. top:100px;
  2066. width:400px;
  2067. height:40px;
  2068. display:flex;
  2069. }
  2070. #u42955 .text {
  2071. position:absolute;
  2072. align-self:center;
  2073. padding:2px 2px 2px 0px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u42955_text {
  2078. border-width:0px;
  2079. word-wrap:break-word;
  2080. text-transform:none;
  2081. visibility:hidden;
  2082. }
  2083. #u42956_input {
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:380px;
  2088. height:30px;
  2089. padding:2px 2px 2px 0px;
  2090. font-family:'ArialMT', 'Arial', sans-serif;
  2091. font-weight:400;
  2092. font-style:normal;
  2093. font-size:13px;
  2094. letter-spacing:normal;
  2095. color:#AAAAAA;
  2096. vertical-align:none;
  2097. text-align:left;
  2098. text-transform:none;
  2099. background-color:transparent;
  2100. border-color:transparent;
  2101. }
  2102. #u42956_input.disabled {
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:380px;
  2107. height:30px;
  2108. padding:2px 2px 2px 0px;
  2109. font-family:'ArialMT', 'Arial', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:13px;
  2113. letter-spacing:normal;
  2114. color:#AAAAAA;
  2115. vertical-align:none;
  2116. text-align:left;
  2117. text-transform:none;
  2118. background-color:transparent;
  2119. border-color:transparent;
  2120. }
  2121. #u42956_div {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:380px;
  2127. height:30px;
  2128. background:inherit;
  2129. background-color:rgba(255, 255, 255, 1);
  2130. border:none;
  2131. border-radius:0px;
  2132. -moz-box-shadow:none;
  2133. -webkit-box-shadow:none;
  2134. box-shadow:none;
  2135. color:#AAAAAA;
  2136. }
  2137. #u42956 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:230px;
  2141. top:104px;
  2142. width:380px;
  2143. height:30px;
  2144. display:flex;
  2145. color:#AAAAAA;
  2146. }
  2147. #u42956 .text {
  2148. position:absolute;
  2149. align-self:flex-start;
  2150. padding:2px 2px 2px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u42956_div.disabled {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:380px;
  2160. height:30px;
  2161. background:inherit;
  2162. background-color:rgba(240, 240, 240, 1);
  2163. border:none;
  2164. border-radius:0px;
  2165. -moz-box-shadow:none;
  2166. -webkit-box-shadow:none;
  2167. box-shadow:none;
  2168. color:#AAAAAA;
  2169. }
  2170. #u42956.disabled {
  2171. }
  2172. .u42956_input_option {
  2173. }
  2174. #u42957_div {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:71px;
  2180. height:30px;
  2181. background:inherit;
  2182. background-color:rgba(255, 255, 255, 0);
  2183. border:none;
  2184. border-top:0px;
  2185. border-right:0px;
  2186. border-bottom:0px;
  2187. border-radius:0px;
  2188. border-top-left-radius:0px;
  2189. border-bottom-left-radius:0px;
  2190. -moz-box-shadow:none;
  2191. -webkit-box-shadow:none;
  2192. box-shadow:none;
  2193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:14px;
  2197. text-align:right;
  2198. }
  2199. #u42957 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:139px;
  2203. top:853px;
  2204. width:71px;
  2205. height:30px;
  2206. display:flex;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:14px;
  2211. text-align:right;
  2212. }
  2213. #u42957 .text {
  2214. position:absolute;
  2215. align-self:center;
  2216. padding:5px 0px 5px 0px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u42957_text {
  2221. border-width:0px;
  2222. white-space:nowrap;
  2223. text-transform:none;
  2224. }
  2225. #u42958 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:0px;
  2231. height:0px;
  2232. }
  2233. #u42959_div {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:400px;
  2239. height:40px;
  2240. background:inherit;
  2241. background-color:rgba(255, 255, 255, 1);
  2242. box-sizing:border-box;
  2243. border-width:1px;
  2244. border-style:solid;
  2245. border-color:rgba(170, 170, 170, 1);
  2246. border-radius:4px;
  2247. -moz-box-shadow:none;
  2248. -webkit-box-shadow:none;
  2249. box-shadow:none;
  2250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2251. font-weight:400;
  2252. font-style:normal;
  2253. text-align:left;
  2254. }
  2255. #u42959 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:220px;
  2259. top:848px;
  2260. width:400px;
  2261. height:40px;
  2262. display:flex;
  2263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2264. font-weight:400;
  2265. font-style:normal;
  2266. text-align:left;
  2267. }
  2268. #u42959 .text {
  2269. position:absolute;
  2270. align-self:center;
  2271. padding:2px 2px 2px 10px;
  2272. box-sizing:border-box;
  2273. width:100%;
  2274. }
  2275. #u42959_text {
  2276. border-width:0px;
  2277. word-wrap:break-word;
  2278. text-transform:none;
  2279. visibility:hidden;
  2280. }
  2281. #u42960_input {
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:380px;
  2286. height:31px;
  2287. padding:2px 2px 2px 2px;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:13px;
  2292. letter-spacing:normal;
  2293. color:#AAAAAA;
  2294. vertical-align:none;
  2295. text-align:left;
  2296. text-transform:none;
  2297. background-color:transparent;
  2298. border-color:transparent;
  2299. }
  2300. #u42960_input.disabled {
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:380px;
  2305. height:31px;
  2306. padding:2px 2px 2px 2px;
  2307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2308. font-weight:400;
  2309. font-style:normal;
  2310. font-size:13px;
  2311. letter-spacing:normal;
  2312. color:#AAAAAA;
  2313. vertical-align:none;
  2314. text-align:left;
  2315. text-transform:none;
  2316. background-color:transparent;
  2317. border-color:transparent;
  2318. }
  2319. #u42960_div {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:380px;
  2325. height:31px;
  2326. background:inherit;
  2327. background-color:rgba(255, 255, 255, 0);
  2328. border:none;
  2329. border-radius:0px;
  2330. -moz-box-shadow:none;
  2331. -webkit-box-shadow:none;
  2332. box-shadow:none;
  2333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. color:#AAAAAA;
  2337. }
  2338. #u42960 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:230px;
  2342. top:853px;
  2343. width:380px;
  2344. height:31px;
  2345. display:flex;
  2346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2347. font-weight:400;
  2348. font-style:normal;
  2349. color:#AAAAAA;
  2350. }
  2351. #u42960 .text {
  2352. position:absolute;
  2353. align-self:center;
  2354. padding:2px 2px 2px 2px;
  2355. box-sizing:border-box;
  2356. width:100%;
  2357. }
  2358. #u42960_div.disabled {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:380px;
  2364. height:31px;
  2365. background:inherit;
  2366. background-color:rgba(240, 240, 240, 1);
  2367. border:none;
  2368. border-radius:0px;
  2369. -moz-box-shadow:none;
  2370. -webkit-box-shadow:none;
  2371. box-shadow:none;
  2372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2373. font-weight:400;
  2374. font-style:normal;
  2375. color:#AAAAAA;
  2376. }
  2377. #u42960.disabled {
  2378. }
  2379. #u42961_div {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:78px;
  2385. height:30px;
  2386. background:inherit;
  2387. background-color:rgba(255, 255, 255, 0);
  2388. border:none;
  2389. border-top:0px;
  2390. border-right:0px;
  2391. border-bottom:0px;
  2392. border-radius:0px;
  2393. border-top-left-radius:0px;
  2394. border-bottom-left-radius:0px;
  2395. -moz-box-shadow:none;
  2396. -webkit-box-shadow:none;
  2397. box-shadow:none;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:14px;
  2402. text-align:right;
  2403. }
  2404. #u42961 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:132px;
  2408. top:155px;
  2409. width:78px;
  2410. height:30px;
  2411. display:flex;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:14px;
  2416. text-align:right;
  2417. }
  2418. #u42961 .text {
  2419. position:absolute;
  2420. align-self:center;
  2421. padding:5px 0px 5px 0px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u42961_text {
  2426. border-width:0px;
  2427. white-space:nowrap;
  2428. text-transform:none;
  2429. }
  2430. #u42962 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:0px;
  2436. height:0px;
  2437. }
  2438. #u42963_div {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:400px;
  2444. height:40px;
  2445. background:inherit;
  2446. background-color:rgba(255, 255, 255, 1);
  2447. box-sizing:border-box;
  2448. border-width:1px;
  2449. border-style:solid;
  2450. border-color:rgba(170, 170, 170, 1);
  2451. border-radius:4px;
  2452. -moz-box-shadow:none;
  2453. -webkit-box-shadow:none;
  2454. box-shadow:none;
  2455. }
  2456. #u42963 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:220px;
  2460. top:150px;
  2461. width:400px;
  2462. height:40px;
  2463. display:flex;
  2464. }
  2465. #u42963 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 0px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u42963_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. visibility:hidden;
  2477. }
  2478. #u42964_input {
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:380px;
  2483. height:30px;
  2484. padding:2px 2px 2px 0px;
  2485. font-family:'ArialMT', 'Arial', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:13px;
  2489. letter-spacing:normal;
  2490. color:#AAAAAA;
  2491. vertical-align:none;
  2492. text-align:left;
  2493. text-transform:none;
  2494. background-color:transparent;
  2495. border-color:transparent;
  2496. }
  2497. #u42964_input.disabled {
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:380px;
  2502. height:30px;
  2503. padding:2px 2px 2px 0px;
  2504. font-family:'ArialMT', 'Arial', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:13px;
  2508. letter-spacing:normal;
  2509. color:#AAAAAA;
  2510. vertical-align:none;
  2511. text-align:left;
  2512. text-transform:none;
  2513. background-color:transparent;
  2514. border-color:transparent;
  2515. }
  2516. #u42964_div {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:380px;
  2522. height:30px;
  2523. background:inherit;
  2524. background-color:rgba(255, 255, 255, 1);
  2525. border:none;
  2526. border-radius:0px;
  2527. -moz-box-shadow:none;
  2528. -webkit-box-shadow:none;
  2529. box-shadow:none;
  2530. color:#AAAAAA;
  2531. }
  2532. #u42964 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:230px;
  2536. top:154px;
  2537. width:380px;
  2538. height:30px;
  2539. display:flex;
  2540. color:#AAAAAA;
  2541. }
  2542. #u42964 .text {
  2543. position:absolute;
  2544. align-self:flex-start;
  2545. padding:2px 2px 2px 0px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u42964_div.disabled {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:380px;
  2555. height:30px;
  2556. background:inherit;
  2557. background-color:rgba(240, 240, 240, 1);
  2558. border:none;
  2559. border-radius:0px;
  2560. -moz-box-shadow:none;
  2561. -webkit-box-shadow:none;
  2562. box-shadow:none;
  2563. color:#AAAAAA;
  2564. }
  2565. #u42964.disabled {
  2566. }
  2567. .u42964_input_option {
  2568. }
  2569. #u42965 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:0px;
  2575. height:0px;
  2576. }
  2577. #u42966_div {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:400px;
  2583. height:80px;
  2584. background:inherit;
  2585. background-color:rgba(255, 255, 255, 1);
  2586. box-sizing:border-box;
  2587. border-width:1px;
  2588. border-style:solid;
  2589. border-color:rgba(170, 170, 170, 1);
  2590. border-radius:4px;
  2591. -moz-box-shadow:none;
  2592. -webkit-box-shadow:none;
  2593. box-shadow:none;
  2594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2595. font-weight:400;
  2596. font-style:normal;
  2597. text-align:left;
  2598. }
  2599. #u42966 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:220px;
  2603. top:988px;
  2604. width:400px;
  2605. height:80px;
  2606. display:flex;
  2607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2608. font-weight:400;
  2609. font-style:normal;
  2610. text-align:left;
  2611. }
  2612. #u42966 .text {
  2613. position:absolute;
  2614. align-self:center;
  2615. padding:2px 2px 2px 10px;
  2616. box-sizing:border-box;
  2617. width:100%;
  2618. }
  2619. #u42966_text {
  2620. border-width:0px;
  2621. word-wrap:break-word;
  2622. text-transform:none;
  2623. visibility:hidden;
  2624. }
  2625. #u42967_input {
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:188px;
  2630. height:31px;
  2631. padding:2px 2px 2px 2px;
  2632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:13px;
  2636. letter-spacing:normal;
  2637. color:#AAAAAA;
  2638. vertical-align:none;
  2639. text-align:left;
  2640. text-transform:none;
  2641. background-color:transparent;
  2642. border-color:transparent;
  2643. }
  2644. #u42967_input.disabled {
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:188px;
  2649. height:31px;
  2650. padding:2px 2px 2px 2px;
  2651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. font-size:13px;
  2655. letter-spacing:normal;
  2656. color:#AAAAAA;
  2657. vertical-align:none;
  2658. text-align:left;
  2659. text-transform:none;
  2660. background-color:transparent;
  2661. border-color:transparent;
  2662. }
  2663. #u42967_div {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:188px;
  2669. height:31px;
  2670. background:inherit;
  2671. background-color:rgba(255, 255, 255, 0);
  2672. border:none;
  2673. border-radius:0px;
  2674. -moz-box-shadow:none;
  2675. -webkit-box-shadow:none;
  2676. box-shadow:none;
  2677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. color:#AAAAAA;
  2681. }
  2682. #u42967 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:230px;
  2686. top:993px;
  2687. width:188px;
  2688. height:31px;
  2689. display:flex;
  2690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2691. font-weight:400;
  2692. font-style:normal;
  2693. color:#AAAAAA;
  2694. }
  2695. #u42967 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 2px 2px 2px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u42967_div.disabled {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:188px;
  2708. height:31px;
  2709. background:inherit;
  2710. background-color:rgba(240, 240, 240, 1);
  2711. border:none;
  2712. border-radius:0px;
  2713. -moz-box-shadow:none;
  2714. -webkit-box-shadow:none;
  2715. box-shadow:none;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. color:#AAAAAA;
  2720. }
  2721. #u42967.disabled {
  2722. }
  2723. #u42968_div {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:39px;
  2729. height:24px;
  2730. background:inherit;
  2731. background-color:rgba(255, 255, 255, 0);
  2732. border:none;
  2733. border-top:0px;
  2734. border-right:0px;
  2735. border-bottom:0px;
  2736. border-radius:0px;
  2737. border-top-left-radius:0px;
  2738. border-bottom-left-radius:0px;
  2739. -moz-box-shadow:none;
  2740. -webkit-box-shadow:none;
  2741. box-shadow:none;
  2742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2743. font-weight:400;
  2744. font-style:normal;
  2745. font-size:10px;
  2746. color:#AAAAAA;
  2747. text-align:right;
  2748. }
  2749. #u42968 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:578px;
  2753. top:1043px;
  2754. width:39px;
  2755. height:24px;
  2756. display:flex;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:10px;
  2761. color:#AAAAAA;
  2762. text-align:right;
  2763. }
  2764. #u42968 .text {
  2765. position:absolute;
  2766. align-self:center;
  2767. padding:5px 0px 5px 0px;
  2768. box-sizing:border-box;
  2769. width:100%;
  2770. }
  2771. #u42968_text {
  2772. border-width:0px;
  2773. white-space:nowrap;
  2774. text-transform:none;
  2775. }
  2776. #u42969_div {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:71px;
  2782. height:30px;
  2783. background:inherit;
  2784. background-color:rgba(255, 255, 255, 0);
  2785. border:none;
  2786. border-top:0px;
  2787. border-right:0px;
  2788. border-bottom:0px;
  2789. border-radius:0px;
  2790. border-top-left-radius:0px;
  2791. border-bottom-left-radius:0px;
  2792. -moz-box-shadow:none;
  2793. -webkit-box-shadow:none;
  2794. box-shadow:none;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:14px;
  2799. text-align:right;
  2800. }
  2801. #u42969 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:139px;
  2805. top:988px;
  2806. width:71px;
  2807. height:30px;
  2808. display:flex;
  2809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:14px;
  2813. text-align:right;
  2814. }
  2815. #u42969 .text {
  2816. position:absolute;
  2817. align-self:center;
  2818. padding:5px 0px 5px 0px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u42969_text {
  2823. border-width:0px;
  2824. white-space:nowrap;
  2825. text-transform:none;
  2826. }
  2827. #u42970_div {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:80px;
  2833. height:80px;
  2834. background:inherit;
  2835. background-color:rgba(255, 255, 255, 1);
  2836. box-sizing:border-box;
  2837. border-width:1px;
  2838. border-style:solid;
  2839. border-color:rgba(170, 170, 170, 1);
  2840. border-radius:4px;
  2841. -moz-box-shadow:none;
  2842. -webkit-box-shadow:none;
  2843. box-shadow:none;
  2844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2845. font-weight:400;
  2846. font-style:normal;
  2847. }
  2848. #u42970 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:220px;
  2852. top:898px;
  2853. width:80px;
  2854. height:80px;
  2855. display:flex;
  2856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2857. font-weight:400;
  2858. font-style:normal;
  2859. }
  2860. #u42970 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 2px 2px 2px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u42970_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. }
  2872. #u42971_div {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:71px;
  2878. height:30px;
  2879. background:inherit;
  2880. background-color:rgba(255, 255, 255, 0);
  2881. border:none;
  2882. border-top:0px;
  2883. border-right:0px;
  2884. border-bottom:0px;
  2885. border-radius:0px;
  2886. border-top-left-radius:0px;
  2887. border-bottom-left-radius:0px;
  2888. -moz-box-shadow:none;
  2889. -webkit-box-shadow:none;
  2890. box-shadow:none;
  2891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2892. font-weight:400;
  2893. font-style:normal;
  2894. font-size:14px;
  2895. text-align:right;
  2896. }
  2897. #u42971 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:139px;
  2901. top:903px;
  2902. width:71px;
  2903. height:30px;
  2904. display:flex;
  2905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2906. font-weight:400;
  2907. font-style:normal;
  2908. font-size:14px;
  2909. text-align:right;
  2910. }
  2911. #u42971 .text {
  2912. position:absolute;
  2913. align-self:center;
  2914. padding:5px 0px 5px 0px;
  2915. box-sizing:border-box;
  2916. width:100%;
  2917. }
  2918. #u42971_text {
  2919. border-width:0px;
  2920. white-space:nowrap;
  2921. text-transform:none;
  2922. }
  2923. #u42972_div {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:71px;
  2929. height:30px;
  2930. background:inherit;
  2931. background-color:rgba(255, 255, 255, 0);
  2932. border:none;
  2933. border-top:0px;
  2934. border-right:0px;
  2935. border-bottom:0px;
  2936. border-radius:0px;
  2937. border-top-left-radius:0px;
  2938. border-bottom-left-radius:0px;
  2939. -moz-box-shadow:none;
  2940. -webkit-box-shadow:none;
  2941. box-shadow:none;
  2942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2943. font-weight:400;
  2944. font-style:normal;
  2945. font-size:14px;
  2946. text-align:right;
  2947. }
  2948. #u42972 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:139px;
  2952. top:403px;
  2953. width:71px;
  2954. height:30px;
  2955. display:flex;
  2956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. font-size:14px;
  2960. text-align:right;
  2961. }
  2962. #u42972 .text {
  2963. position:absolute;
  2964. align-self:center;
  2965. padding:5px 0px 5px 0px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u42972_text {
  2970. border-width:0px;
  2971. white-space:nowrap;
  2972. text-transform:none;
  2973. }
  2974. #u42973 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:0px;
  2980. height:0px;
  2981. }
  2982. #u42974_div {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:400px;
  2988. height:40px;
  2989. background:inherit;
  2990. background-color:rgba(255, 255, 255, 1);
  2991. box-sizing:border-box;
  2992. border-width:1px;
  2993. border-style:solid;
  2994. border-color:rgba(170, 170, 170, 1);
  2995. border-radius:4px;
  2996. -moz-box-shadow:none;
  2997. -webkit-box-shadow:none;
  2998. box-shadow:none;
  2999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3000. font-weight:400;
  3001. font-style:normal;
  3002. color:#AAAAAA;
  3003. text-align:left;
  3004. }
  3005. #u42974 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:220px;
  3009. top:398px;
  3010. width:400px;
  3011. height:40px;
  3012. display:flex;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. color:#AAAAAA;
  3017. text-align:left;
  3018. }
  3019. #u42974 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 2px 2px 10px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u42974_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. }
  3031. #u42975_div {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:68px;
  3037. height:40px;
  3038. background:inherit;
  3039. background-color:rgba(24, 144, 255, 1);
  3040. border:none;
  3041. border-radius:4px;
  3042. -moz-box-shadow:none;
  3043. -webkit-box-shadow:none;
  3044. box-shadow:none;
  3045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. color:#FFFFFF;
  3049. }
  3050. #u42975 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:552px;
  3054. top:398px;
  3055. width:68px;
  3056. height:40px;
  3057. display:flex;
  3058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. color:#FFFFFF;
  3062. }
  3063. #u42975 .text {
  3064. position:absolute;
  3065. align-self:center;
  3066. padding:2px 2px 2px 2px;
  3067. box-sizing:border-box;
  3068. width:100%;
  3069. }
  3070. #u42975_text {
  3071. border-width:0px;
  3072. word-wrap:break-word;
  3073. text-transform:none;
  3074. }
  3075. #u42976_div {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:78px;
  3081. height:30px;
  3082. background:inherit;
  3083. background-color:rgba(255, 255, 255, 0);
  3084. border:none;
  3085. border-top:0px;
  3086. border-right:0px;
  3087. border-bottom:0px;
  3088. border-radius:0px;
  3089. border-top-left-radius:0px;
  3090. border-bottom-left-radius:0px;
  3091. -moz-box-shadow:none;
  3092. -webkit-box-shadow:none;
  3093. box-shadow:none;
  3094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3095. font-weight:400;
  3096. font-style:normal;
  3097. font-size:14px;
  3098. text-align:right;
  3099. }
  3100. #u42976 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:131px;
  3104. top:253px;
  3105. width:78px;
  3106. height:30px;
  3107. display:flex;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:14px;
  3112. text-align:right;
  3113. }
  3114. #u42976 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:5px 0px 5px 0px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u42976_text {
  3122. border-width:0px;
  3123. white-space:nowrap;
  3124. text-transform:none;
  3125. }
  3126. #u42977 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:0px;
  3132. height:0px;
  3133. }
  3134. #u42978_div {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:400px;
  3140. height:40px;
  3141. background:inherit;
  3142. background-color:rgba(255, 255, 255, 1);
  3143. box-sizing:border-box;
  3144. border-width:1px;
  3145. border-style:solid;
  3146. border-color:rgba(170, 170, 170, 1);
  3147. border-radius:4px;
  3148. -moz-box-shadow:none;
  3149. -webkit-box-shadow:none;
  3150. box-shadow:none;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. text-align:left;
  3155. }
  3156. #u42978 {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:219px;
  3160. top:298px;
  3161. width:400px;
  3162. height:40px;
  3163. display:flex;
  3164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3165. font-weight:400;
  3166. font-style:normal;
  3167. text-align:left;
  3168. }
  3169. #u42978 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:2px 2px 2px 10px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u42978_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. visibility:hidden;
  3181. }
  3182. #u42979_input {
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:380px;
  3187. height:31px;
  3188. padding:2px 2px 2px 2px;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:13px;
  3193. letter-spacing:normal;
  3194. color:#AAAAAA;
  3195. vertical-align:none;
  3196. text-align:left;
  3197. text-transform:none;
  3198. background-color:transparent;
  3199. border-color:transparent;
  3200. }
  3201. #u42979_input.disabled {
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:380px;
  3206. height:31px;
  3207. padding:2px 2px 2px 2px;
  3208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:13px;
  3212. letter-spacing:normal;
  3213. color:#AAAAAA;
  3214. vertical-align:none;
  3215. text-align:left;
  3216. text-transform:none;
  3217. background-color:transparent;
  3218. border-color:transparent;
  3219. }
  3220. #u42979_div {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:380px;
  3226. height:31px;
  3227. background:inherit;
  3228. background-color:rgba(255, 255, 255, 0);
  3229. border:none;
  3230. border-radius:0px;
  3231. -moz-box-shadow:none;
  3232. -webkit-box-shadow:none;
  3233. box-shadow:none;
  3234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3235. font-weight:400;
  3236. font-style:normal;
  3237. color:#AAAAAA;
  3238. }
  3239. #u42979 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:229px;
  3243. top:303px;
  3244. width:380px;
  3245. height:31px;
  3246. display:flex;
  3247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. color:#AAAAAA;
  3251. }
  3252. #u42979 .text {
  3253. position:absolute;
  3254. align-self:center;
  3255. padding:2px 2px 2px 2px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u42979_div.disabled {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:380px;
  3265. height:31px;
  3266. background:inherit;
  3267. background-color:rgba(240, 240, 240, 1);
  3268. border:none;
  3269. border-radius:0px;
  3270. -moz-box-shadow:none;
  3271. -webkit-box-shadow:none;
  3272. box-shadow:none;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. color:#AAAAAA;
  3277. }
  3278. #u42979.disabled {
  3279. }
  3280. #u42980_div {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:78px;
  3286. height:30px;
  3287. background:inherit;
  3288. background-color:rgba(255, 255, 255, 0);
  3289. border:none;
  3290. border-top:0px;
  3291. border-right:0px;
  3292. border-bottom:0px;
  3293. border-radius:0px;
  3294. border-top-left-radius:0px;
  3295. border-bottom-left-radius:0px;
  3296. -moz-box-shadow:none;
  3297. -webkit-box-shadow:none;
  3298. box-shadow:none;
  3299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:14px;
  3303. text-align:right;
  3304. }
  3305. #u42980 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:131px;
  3309. top:303px;
  3310. width:78px;
  3311. height:30px;
  3312. display:flex;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:14px;
  3317. text-align:right;
  3318. }
  3319. #u42980 .text {
  3320. position:absolute;
  3321. align-self:center;
  3322. padding:5px 0px 5px 0px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u42980_text {
  3327. border-width:0px;
  3328. white-space:nowrap;
  3329. text-transform:none;
  3330. }
  3331. #u42981_div {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:71px;
  3337. height:30px;
  3338. background:inherit;
  3339. background-color:rgba(255, 255, 255, 0);
  3340. border:none;
  3341. border-top:0px;
  3342. border-right:0px;
  3343. border-bottom:0px;
  3344. border-radius:0px;
  3345. border-top-left-radius:0px;
  3346. border-bottom-left-radius:0px;
  3347. -moz-box-shadow:none;
  3348. -webkit-box-shadow:none;
  3349. box-shadow:none;
  3350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3351. font-weight:400;
  3352. font-style:normal;
  3353. font-size:14px;
  3354. text-align:right;
  3355. }
  3356. #u42981 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:138px;
  3360. top:353px;
  3361. width:71px;
  3362. height:30px;
  3363. display:flex;
  3364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:14px;
  3368. text-align:right;
  3369. }
  3370. #u42981 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:5px 0px 5px 0px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u42981_text {
  3378. border-width:0px;
  3379. white-space:nowrap;
  3380. text-transform:none;
  3381. }
  3382. #u42982 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:0px;
  3388. height:0px;
  3389. }
  3390. #u42983_div {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:400px;
  3396. height:40px;
  3397. background:inherit;
  3398. background-color:rgba(242, 242, 242, 1);
  3399. box-sizing:border-box;
  3400. border-width:1px;
  3401. border-style:solid;
  3402. border-color:rgba(170, 170, 170, 1);
  3403. border-radius:4px;
  3404. -moz-box-shadow:none;
  3405. -webkit-box-shadow:none;
  3406. box-shadow:none;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. text-align:left;
  3411. }
  3412. #u42983 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:219px;
  3416. top:348px;
  3417. width:400px;
  3418. height:40px;
  3419. display:flex;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. text-align:left;
  3424. }
  3425. #u42983 .text {
  3426. position:absolute;
  3427. align-self:center;
  3428. padding:2px 2px 2px 10px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u42983_text {
  3433. border-width:0px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. visibility:hidden;
  3437. }
  3438. #u42984_input {
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:380px;
  3443. height:31px;
  3444. padding:2px 2px 2px 2px;
  3445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:13px;
  3449. letter-spacing:normal;
  3450. color:#AAAAAA;
  3451. vertical-align:none;
  3452. text-align:left;
  3453. text-transform:none;
  3454. background-color:transparent;
  3455. border-color:transparent;
  3456. }
  3457. #u42984_input.disabled {
  3458. position:absolute;
  3459. left:0px;
  3460. top:0px;
  3461. width:380px;
  3462. height:31px;
  3463. padding:2px 2px 2px 2px;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:13px;
  3468. letter-spacing:normal;
  3469. color:#AAAAAA;
  3470. vertical-align:none;
  3471. text-align:left;
  3472. text-transform:none;
  3473. background-color:transparent;
  3474. border-color:transparent;
  3475. }
  3476. #u42984_div {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:380px;
  3482. height:31px;
  3483. background:inherit;
  3484. background-color:rgba(242, 242, 242, 1);
  3485. border:none;
  3486. border-radius:0px;
  3487. -moz-box-shadow:none;
  3488. -webkit-box-shadow:none;
  3489. box-shadow:none;
  3490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. color:#AAAAAA;
  3494. }
  3495. #u42984 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:229px;
  3499. top:353px;
  3500. width:380px;
  3501. height:31px;
  3502. display:flex;
  3503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3504. font-weight:400;
  3505. font-style:normal;
  3506. color:#AAAAAA;
  3507. }
  3508. #u42984 .text {
  3509. position:absolute;
  3510. align-self:center;
  3511. padding:2px 2px 2px 2px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u42984_div.disabled {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:380px;
  3521. height:31px;
  3522. background:inherit;
  3523. background-color:rgba(240, 240, 240, 1);
  3524. border:none;
  3525. border-radius:0px;
  3526. -moz-box-shadow:none;
  3527. -webkit-box-shadow:none;
  3528. box-shadow:none;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. color:#AAAAAA;
  3533. }
  3534. #u42984.disabled {
  3535. }
  3536. #u42985 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:0px;
  3542. height:0px;
  3543. }
  3544. #u42986_div {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:400px;
  3550. height:40px;
  3551. background:inherit;
  3552. background-color:rgba(255, 255, 255, 1);
  3553. box-sizing:border-box;
  3554. border-width:1px;
  3555. border-style:solid;
  3556. border-color:rgba(170, 170, 170, 1);
  3557. border-radius:4px;
  3558. -moz-box-shadow:none;
  3559. -webkit-box-shadow:none;
  3560. box-shadow:none;
  3561. }
  3562. #u42986 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:219px;
  3566. top:248px;
  3567. width:400px;
  3568. height:40px;
  3569. display:flex;
  3570. }
  3571. #u42986 .text {
  3572. position:absolute;
  3573. align-self:center;
  3574. padding:2px 2px 2px 0px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u42986_text {
  3579. border-width:0px;
  3580. word-wrap:break-word;
  3581. text-transform:none;
  3582. visibility:hidden;
  3583. }
  3584. #u42987_input {
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:380px;
  3589. height:30px;
  3590. padding:2px 2px 2px 0px;
  3591. font-family:'ArialMT', 'Arial', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:13px;
  3595. letter-spacing:normal;
  3596. color:#AAAAAA;
  3597. vertical-align:none;
  3598. text-align:left;
  3599. text-transform:none;
  3600. background-color:transparent;
  3601. border-color:transparent;
  3602. }
  3603. #u42987_input.disabled {
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:380px;
  3608. height:30px;
  3609. padding:2px 2px 2px 0px;
  3610. font-family:'ArialMT', 'Arial', sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:13px;
  3614. letter-spacing:normal;
  3615. color:#AAAAAA;
  3616. vertical-align:none;
  3617. text-align:left;
  3618. text-transform:none;
  3619. background-color:transparent;
  3620. border-color:transparent;
  3621. }
  3622. #u42987_div {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:380px;
  3628. height:30px;
  3629. background:inherit;
  3630. background-color:rgba(255, 255, 255, 1);
  3631. border:none;
  3632. border-radius:0px;
  3633. -moz-box-shadow:none;
  3634. -webkit-box-shadow:none;
  3635. box-shadow:none;
  3636. color:#AAAAAA;
  3637. }
  3638. #u42987 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:229px;
  3642. top:252px;
  3643. width:380px;
  3644. height:30px;
  3645. display:flex;
  3646. color:#AAAAAA;
  3647. }
  3648. #u42987 .text {
  3649. position:absolute;
  3650. align-self:flex-start;
  3651. padding:2px 2px 2px 0px;
  3652. box-sizing:border-box;
  3653. width:100%;
  3654. }
  3655. #u42987_div.disabled {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:380px;
  3661. height:30px;
  3662. background:inherit;
  3663. background-color:rgba(240, 240, 240, 1);
  3664. border:none;
  3665. border-radius:0px;
  3666. -moz-box-shadow:none;
  3667. -webkit-box-shadow:none;
  3668. box-shadow:none;
  3669. color:#AAAAAA;
  3670. }
  3671. #u42987.disabled {
  3672. }
  3673. .u42987_input_option {
  3674. }
  3675. #u42988_div {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:78px;
  3681. height:30px;
  3682. background:inherit;
  3683. background-color:rgba(255, 255, 255, 0);
  3684. border:none;
  3685. border-top:0px;
  3686. border-right:0px;
  3687. border-bottom:0px;
  3688. border-radius:0px;
  3689. border-top-left-radius:0px;
  3690. border-bottom-left-radius:0px;
  3691. -moz-box-shadow:none;
  3692. -webkit-box-shadow:none;
  3693. box-shadow:none;
  3694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3695. font-weight:400;
  3696. font-style:normal;
  3697. font-size:14px;
  3698. text-align:right;
  3699. }
  3700. #u42988 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:132px;
  3704. top:205px;
  3705. width:78px;
  3706. height:30px;
  3707. display:flex;
  3708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3709. font-weight:400;
  3710. font-style:normal;
  3711. font-size:14px;
  3712. text-align:right;
  3713. }
  3714. #u42988 .text {
  3715. position:absolute;
  3716. align-self:center;
  3717. padding:5px 0px 5px 0px;
  3718. box-sizing:border-box;
  3719. width:100%;
  3720. }
  3721. #u42988_text {
  3722. border-width:0px;
  3723. white-space:nowrap;
  3724. text-transform:none;
  3725. }
  3726. #u42989 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:0px;
  3732. height:0px;
  3733. }
  3734. #u42990_div {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:400px;
  3740. height:40px;
  3741. background:inherit;
  3742. background-color:rgba(255, 255, 255, 1);
  3743. box-sizing:border-box;
  3744. border-width:1px;
  3745. border-style:solid;
  3746. border-color:rgba(170, 170, 170, 1);
  3747. border-radius:4px;
  3748. -moz-box-shadow:none;
  3749. -webkit-box-shadow:none;
  3750. box-shadow:none;
  3751. }
  3752. #u42990 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:220px;
  3756. top:200px;
  3757. width:400px;
  3758. height:40px;
  3759. display:flex;
  3760. }
  3761. #u42990 .text {
  3762. position:absolute;
  3763. align-self:center;
  3764. padding:2px 2px 2px 0px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u42990_text {
  3769. border-width:0px;
  3770. word-wrap:break-word;
  3771. text-transform:none;
  3772. visibility:hidden;
  3773. }
  3774. #u42991_input {
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:380px;
  3779. height:30px;
  3780. padding:2px 2px 2px 0px;
  3781. font-family:'ArialMT', 'Arial', sans-serif;
  3782. font-weight:400;
  3783. font-style:normal;
  3784. font-size:13px;
  3785. letter-spacing:normal;
  3786. color:#AAAAAA;
  3787. vertical-align:none;
  3788. text-align:left;
  3789. text-transform:none;
  3790. background-color:transparent;
  3791. border-color:transparent;
  3792. }
  3793. #u42991_input.disabled {
  3794. position:absolute;
  3795. left:0px;
  3796. top:0px;
  3797. width:380px;
  3798. height:30px;
  3799. padding:2px 2px 2px 0px;
  3800. font-family:'ArialMT', 'Arial', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:13px;
  3804. letter-spacing:normal;
  3805. color:#AAAAAA;
  3806. vertical-align:none;
  3807. text-align:left;
  3808. text-transform:none;
  3809. background-color:transparent;
  3810. border-color:transparent;
  3811. }
  3812. #u42991_div {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:380px;
  3818. height:30px;
  3819. background:inherit;
  3820. background-color:rgba(255, 255, 255, 1);
  3821. border:none;
  3822. border-radius:0px;
  3823. -moz-box-shadow:none;
  3824. -webkit-box-shadow:none;
  3825. box-shadow:none;
  3826. color:#AAAAAA;
  3827. }
  3828. #u42991 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:230px;
  3832. top:204px;
  3833. width:380px;
  3834. height:30px;
  3835. display:flex;
  3836. color:#AAAAAA;
  3837. }
  3838. #u42991 .text {
  3839. position:absolute;
  3840. align-self:flex-start;
  3841. padding:2px 2px 2px 0px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u42991_div.disabled {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:0px;
  3849. top:0px;
  3850. width:380px;
  3851. height:30px;
  3852. background:inherit;
  3853. background-color:rgba(240, 240, 240, 1);
  3854. border:none;
  3855. border-radius:0px;
  3856. -moz-box-shadow:none;
  3857. -webkit-box-shadow:none;
  3858. box-shadow:none;
  3859. color:#AAAAAA;
  3860. }
  3861. #u42991.disabled {
  3862. }
  3863. .u42991_input_option {
  3864. }
  3865. #u42992_div {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:240px;
  3871. height:30px;
  3872. background:inherit;
  3873. background-color:rgba(255, 255, 255, 0);
  3874. border:none;
  3875. border-top:0px;
  3876. border-right:0px;
  3877. border-bottom:0px;
  3878. border-radius:0px;
  3879. border-top-left-radius:0px;
  3880. border-bottom-left-radius:0px;
  3881. -moz-box-shadow:none;
  3882. -webkit-box-shadow:none;
  3883. box-shadow:none;
  3884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3885. font-weight:400;
  3886. font-style:normal;
  3887. font-size:14px;
  3888. color:#D9001B;
  3889. }
  3890. #u42992 {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:702px;
  3894. top:110px;
  3895. width:240px;
  3896. height:30px;
  3897. display:flex;
  3898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3899. font-weight:400;
  3900. font-style:normal;
  3901. font-size:14px;
  3902. color:#D9001B;
  3903. }
  3904. #u42992 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:5px 0px 5px 0px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u42992_text {
  3912. border-width:0px;
  3913. white-space:nowrap;
  3914. text-transform:none;
  3915. }