styles.css 77 KB

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