styles.css 63 KB

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