styles.css 65 KB

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