styles.css 66 KB

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