styles.css 60 KB

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