styles.css 68 KB

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