styles.css 68 KB

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