styles.css 63 KB

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