styles.css 60 KB

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