styles.css 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-186px;
  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. #u121534 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u121535_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1136px;
  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. #u121535 {
  53. border-width:0px;
  54. position:absolute;
  55. left:186px;
  56. top:182px;
  57. width:1000px;
  58. height:1136px;
  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. #u121535 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u121535_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u121536_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. #u121536 {
  107. border-width:0px;
  108. position:absolute;
  109. left:186px;
  110. top:182px;
  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. #u121536 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u121536_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u121537_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:83px;
  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. #u121537 {
  160. border-width:0px;
  161. position:absolute;
  162. left:206px;
  163. top:200px;
  164. width:83px;
  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. #u121537 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:5px 10px 5px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u121537_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u121538 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u121539_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. #u121539 {
  218. border-width:0px;
  219. position:absolute;
  220. left:1146px;
  221. top:182px;
  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. #u121539 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:5px 10px 5px 0px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u121539_text {
  239. border-width:0px;
  240. word-wrap:break-word;
  241. text-transform:none;
  242. }
  243. #u121540_img {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:13px;
  249. height:13px;
  250. }
  251. #u121540 {
  252. border-width:0px;
  253. position:absolute;
  254. left:1134px;
  255. top:198px;
  256. width:13px;
  257. height:13px;
  258. display:flex;
  259. font-size:14px;
  260. }
  261. #u121540 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:2px 2px 2px 2px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u121540_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. visibility:hidden;
  273. }
  274. #u121541_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:381px;
  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. #u121541 {
  299. border-width:0px;
  300. position:absolute;
  301. left:216px;
  302. top:251px;
  303. width:381px;
  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. #u121541 .text {
  312. position:absolute;
  313. align-self:center;
  314. padding:5px 10px 5px 0px;
  315. box-sizing:border-box;
  316. width:100%;
  317. }
  318. #u121541_text {
  319. border-width:0px;
  320. white-space:nowrap;
  321. text-transform:none;
  322. }
  323. #u121542_img {
  324. border-width:0px;
  325. position:absolute;
  326. left:0px;
  327. top:0px;
  328. width:108px;
  329. height:108px;
  330. }
  331. #u121542 {
  332. border-width:0px;
  333. position:absolute;
  334. left:1036px;
  335. top:252px;
  336. width:108px;
  337. height:108px;
  338. display:flex;
  339. -webkit-transform:rotate(315deg);
  340. -moz-transform:rotate(315deg);
  341. -ms-transform:rotate(315deg);
  342. transform:rotate(315deg);
  343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  344. font-weight:400;
  345. font-style:normal;
  346. font-size:28px;
  347. color:#F59A23;
  348. }
  349. #u121542 .text {
  350. position:absolute;
  351. align-self:center;
  352. padding:2px 2px 2px 2px;
  353. box-sizing:border-box;
  354. width:100%;
  355. }
  356. #u121542_text {
  357. border-width:0px;
  358. word-wrap:break-word;
  359. text-transform:none;
  360. }
  361. #u121543 {
  362. border-width:0px;
  363. position:absolute;
  364. left:0px;
  365. top:0px;
  366. width:0px;
  367. height:0px;
  368. }
  369. #u121544 {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:0px;
  375. height:0px;
  376. }
  377. #u121545_div {
  378. border-width:0px;
  379. position:absolute;
  380. left:0px;
  381. top:0px;
  382. width:1000px;
  383. height:60px;
  384. background:inherit;
  385. background-color:rgba(255, 255, 255, 1);
  386. box-sizing:border-box;
  387. border-width:1px;
  388. border-style:solid;
  389. border-color:rgba(215, 215, 215, 1);
  390. border-radius:0px;
  391. -moz-box-shadow:none;
  392. -webkit-box-shadow:none;
  393. box-shadow:none;
  394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  395. font-weight:400;
  396. font-style:normal;
  397. font-size:14px;
  398. color:#AAAAAA;
  399. text-align:center;
  400. line-height:30px;
  401. }
  402. #u121545 {
  403. border-width:0px;
  404. position:absolute;
  405. left:186px;
  406. top:1259px;
  407. width:1000px;
  408. height:60px;
  409. display:flex;
  410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  411. font-weight:400;
  412. font-style:normal;
  413. font-size:14px;
  414. color:#AAAAAA;
  415. text-align:center;
  416. line-height:30px;
  417. }
  418. #u121545 .text {
  419. position:absolute;
  420. align-self:center;
  421. padding:5px 10px 5px 10px;
  422. box-sizing:border-box;
  423. width:100%;
  424. }
  425. #u121545_text {
  426. border-width:0px;
  427. word-wrap:break-word;
  428. text-transform:none;
  429. visibility:hidden;
  430. }
  431. #u121546_div {
  432. border-width:0px;
  433. position:absolute;
  434. left:0px;
  435. top:0px;
  436. width:80px;
  437. height:30px;
  438. background:inherit;
  439. background-color:rgba(24, 144, 255, 1);
  440. border:none;
  441. border-radius:4px;
  442. -moz-box-shadow:none;
  443. -webkit-box-shadow:none;
  444. box-shadow:none;
  445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  446. font-weight:400;
  447. font-style:normal;
  448. font-size:14px;
  449. color:#FFFFFF;
  450. }
  451. #u121546 {
  452. border-width:0px;
  453. position:absolute;
  454. left:1080px;
  455. top:1274px;
  456. width:80px;
  457. height:30px;
  458. display:flex;
  459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  460. font-weight:400;
  461. font-style:normal;
  462. font-size:14px;
  463. color:#FFFFFF;
  464. }
  465. #u121546 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:2px 2px 2px 2px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u121546_text {
  473. border-width:0px;
  474. word-wrap:break-word;
  475. text-transform:none;
  476. }
  477. #u121547_div {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:80px;
  483. height:30px;
  484. background:inherit;
  485. background-color:rgba(217, 0, 27, 1);
  486. border:none;
  487. border-radius:4px;
  488. -moz-box-shadow:none;
  489. -webkit-box-shadow:none;
  490. box-shadow:none;
  491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  492. font-weight:400;
  493. font-style:normal;
  494. font-size:14px;
  495. color:#FFFFFF;
  496. }
  497. #u121547 {
  498. border-width:0px;
  499. position:absolute;
  500. left:990px;
  501. top:1274px;
  502. width:80px;
  503. height:30px;
  504. display:flex;
  505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  506. font-weight:400;
  507. font-style:normal;
  508. font-size:14px;
  509. color:#FFFFFF;
  510. }
  511. #u121547 .text {
  512. position:absolute;
  513. align-self:center;
  514. padding:2px 2px 2px 2px;
  515. box-sizing:border-box;
  516. width:100%;
  517. }
  518. #u121547_text {
  519. border-width:0px;
  520. word-wrap:break-word;
  521. text-transform:none;
  522. }
  523. #u121548_div {
  524. border-width:0px;
  525. position:absolute;
  526. left:0px;
  527. top:0px;
  528. width:80px;
  529. height:30px;
  530. background:inherit;
  531. background-color:rgba(255, 255, 255, 1);
  532. box-sizing:border-box;
  533. border-width:1px;
  534. border-style:solid;
  535. border-color:rgba(170, 170, 170, 1);
  536. border-radius:4px;
  537. -moz-box-shadow:none;
  538. -webkit-box-shadow:none;
  539. box-shadow:none;
  540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  541. font-weight:400;
  542. font-style:normal;
  543. font-size:14px;
  544. }
  545. #u121548 {
  546. border-width:0px;
  547. position:absolute;
  548. left:900px;
  549. top:1274px;
  550. width:80px;
  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. }
  558. #u121548 .text {
  559. position:absolute;
  560. align-self:center;
  561. padding:2px 2px 2px 2px;
  562. box-sizing:border-box;
  563. width:100%;
  564. }
  565. #u121548_text {
  566. border-width:0px;
  567. word-wrap:break-word;
  568. text-transform:none;
  569. }
  570. #u121549_div {
  571. border-width:0px;
  572. position:absolute;
  573. left:0px;
  574. top:0px;
  575. width:325px;
  576. height:60px;
  577. background:inherit;
  578. background-color:rgba(255, 255, 255, 0);
  579. border:none;
  580. border-left:0px;
  581. border-top:0px;
  582. border-right:0px;
  583. border-radius:0px;
  584. border-bottom-right-radius:0px;
  585. border-bottom-left-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  590. font-weight:400;
  591. font-style:normal;
  592. font-size:14px;
  593. line-height:30px;
  594. }
  595. #u121549 {
  596. border-width:0px;
  597. position:absolute;
  598. left:216px;
  599. top:306px;
  600. width:325px;
  601. height:60px;
  602. display:flex;
  603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  604. font-weight:400;
  605. font-style:normal;
  606. font-size:14px;
  607. line-height:30px;
  608. }
  609. #u121549 .text {
  610. position:absolute;
  611. align-self:flex-start;
  612. padding:0px 0px 0px 0px;
  613. box-sizing:border-box;
  614. width:100%;
  615. }
  616. #u121549_text {
  617. border-width:0px;
  618. word-wrap:break-word;
  619. text-transform:none;
  620. }
  621. #u121550_div {
  622. border-width:0px;
  623. position:absolute;
  624. left:0px;
  625. top:0px;
  626. width:1000px;
  627. height:448px;
  628. background:inherit;
  629. background-color:rgba(255, 255, 255, 1);
  630. box-sizing:border-box;
  631. border-width:1px;
  632. border-style:solid;
  633. border-color:rgba(242, 242, 242, 1);
  634. border-radius:0px;
  635. -moz-box-shadow:none;
  636. -webkit-box-shadow:none;
  637. box-shadow:none;
  638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  639. font-weight:400;
  640. font-style:normal;
  641. font-size:14px;
  642. color:#AAAAAA;
  643. text-align:center;
  644. line-height:30px;
  645. }
  646. #u121550 {
  647. border-width:0px;
  648. position:absolute;
  649. left:186px;
  650. top:392px;
  651. width:1000px;
  652. height:448px;
  653. display:flex;
  654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  655. font-weight:400;
  656. font-style:normal;
  657. font-size:14px;
  658. color:#AAAAAA;
  659. text-align:center;
  660. line-height:30px;
  661. }
  662. #u121550 .text {
  663. position:absolute;
  664. align-self:center;
  665. padding:5px 10px 5px 10px;
  666. box-sizing:border-box;
  667. width:100%;
  668. }
  669. #u121550_text {
  670. border-width:0px;
  671. word-wrap:break-word;
  672. text-transform:none;
  673. visibility:hidden;
  674. }
  675. #u121551_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:73px;
  681. height:40px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border:none;
  685. border-left:0px;
  686. border-top:0px;
  687. border-right:0px;
  688. border-radius:0px;
  689. border-bottom-right-radius:0px;
  690. border-bottom-left-radius:0px;
  691. -moz-box-shadow:none;
  692. -webkit-box-shadow:none;
  693. box-shadow:none;
  694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  695. font-weight:400;
  696. font-style:normal;
  697. font-size:18px;
  698. }
  699. #u121551 {
  700. border-width:0px;
  701. position:absolute;
  702. left:226px;
  703. top:408px;
  704. width:73px;
  705. height:40px;
  706. display:flex;
  707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  708. font-weight:400;
  709. font-style:normal;
  710. font-size:18px;
  711. }
  712. #u121551 .text {
  713. position:absolute;
  714. align-self:center;
  715. padding:0px 0px 0px 0px;
  716. box-sizing:border-box;
  717. width:100%;
  718. }
  719. #u121551_text {
  720. border-width:0px;
  721. white-space:nowrap;
  722. text-transform:none;
  723. }
  724. #u121552 {
  725. border-width:0px;
  726. position:absolute;
  727. left:0px;
  728. top:0px;
  729. width:0px;
  730. height:0px;
  731. }
  732. #u121553_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:1000px;
  738. height:409px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 1);
  741. box-sizing:border-box;
  742. border-width:1px;
  743. border-style:solid;
  744. border-color:rgba(215, 215, 215, 1);
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. }
  750. #u121553 {
  751. border-width:0px;
  752. position:absolute;
  753. left:186px;
  754. top:850px;
  755. width:1000px;
  756. height:409px;
  757. display:flex;
  758. }
  759. #u121553 .text {
  760. position:absolute;
  761. align-self:center;
  762. padding:2px 2px 2px 2px;
  763. box-sizing:border-box;
  764. width:100%;
  765. }
  766. #u121553_text {
  767. border-width:0px;
  768. word-wrap:break-word;
  769. text-transform:none;
  770. visibility:hidden;
  771. }
  772. #u121554_div {
  773. border-width:0px;
  774. position:absolute;
  775. left:0px;
  776. top:0px;
  777. width:103px;
  778. height:24px;
  779. background:inherit;
  780. background-color:rgba(255, 255, 255, 0);
  781. border:none;
  782. border-top:0px;
  783. border-right:0px;
  784. border-bottom:0px;
  785. border-radius:0px;
  786. border-top-left-radius:0px;
  787. border-bottom-left-radius:0px;
  788. -moz-box-shadow:none;
  789. -webkit-box-shadow:none;
  790. box-shadow:none;
  791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  792. font-weight:400;
  793. font-style:normal;
  794. font-size:10px;
  795. color:#AAAAAA;
  796. }
  797. #u121554 {
  798. border-width:0px;
  799. position:absolute;
  800. left:441px;
  801. top:923px;
  802. width:103px;
  803. height:24px;
  804. display:flex;
  805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  806. font-weight:400;
  807. font-style:normal;
  808. font-size:10px;
  809. color:#AAAAAA;
  810. }
  811. #u121554 .text {
  812. position:absolute;
  813. align-self:flex-start;
  814. padding:5px 0px 5px 0px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u121554_text {
  819. border-width:0px;
  820. white-space:nowrap;
  821. text-transform:none;
  822. }
  823. #u121555 {
  824. border-width:0px;
  825. position:absolute;
  826. left:0px;
  827. top:0px;
  828. width:0px;
  829. height:0px;
  830. }
  831. #u121556_div {
  832. border-width:0px;
  833. position:absolute;
  834. left:0px;
  835. top:0px;
  836. width:43px;
  837. height:30px;
  838. background:inherit;
  839. background-color:rgba(255, 255, 255, 0);
  840. border:none;
  841. border-top:0px;
  842. border-right:0px;
  843. border-bottom:0px;
  844. border-radius:0px;
  845. border-top-left-radius:0px;
  846. border-bottom-left-radius:0px;
  847. -moz-box-shadow:none;
  848. -webkit-box-shadow:none;
  849. box-shadow:none;
  850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  851. font-weight:400;
  852. font-style:normal;
  853. font-size:14px;
  854. }
  855. #u121556 {
  856. border-width:0px;
  857. position:absolute;
  858. left:274px;
  859. top:925px;
  860. width:43px;
  861. height:30px;
  862. display:flex;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:14px;
  867. }
  868. #u121556 .text {
  869. position:absolute;
  870. align-self:flex-start;
  871. padding:0px 0px 0px 0px;
  872. box-sizing:border-box;
  873. width:100%;
  874. }
  875. #u121556_text {
  876. border-width:0px;
  877. white-space:nowrap;
  878. text-transform:none;
  879. }
  880. #u121557_div {
  881. border-width:0px;
  882. position:absolute;
  883. left:0px;
  884. top:0px;
  885. width:71px;
  886. height:16px;
  887. background:inherit;
  888. background-color:rgba(255, 255, 255, 0);
  889. border:none;
  890. border-top:0px;
  891. border-right:0px;
  892. border-bottom:0px;
  893. border-radius:0px;
  894. border-top-left-radius:0px;
  895. border-bottom-left-radius:0px;
  896. -moz-box-shadow:none;
  897. -webkit-box-shadow:none;
  898. box-shadow:none;
  899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  900. font-weight:400;
  901. font-style:normal;
  902. font-size:11px;
  903. color:#AAAAAA;
  904. }
  905. #u121557 {
  906. border-width:0px;
  907. position:absolute;
  908. left:274px;
  909. top:953px;
  910. width:71px;
  911. height:16px;
  912. display:flex;
  913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  914. font-weight:400;
  915. font-style:normal;
  916. font-size:11px;
  917. color:#AAAAAA;
  918. }
  919. #u121557 .text {
  920. position:absolute;
  921. align-self:flex-start;
  922. padding:0px 0px 0px 0px;
  923. box-sizing:border-box;
  924. width:100%;
  925. }
  926. #u121557_text {
  927. border-width:0px;
  928. white-space:nowrap;
  929. text-transform:none;
  930. }
  931. #u121558_div {
  932. border-width:0px;
  933. position:absolute;
  934. left:0px;
  935. top:0px;
  936. width:43px;
  937. height:20px;
  938. background:inherit;
  939. background-color:rgba(255, 255, 255, 0);
  940. border:none;
  941. border-top:0px;
  942. border-right:0px;
  943. border-bottom:0px;
  944. border-radius:0px;
  945. border-top-left-radius:0px;
  946. border-bottom-left-radius:0px;
  947. -moz-box-shadow:none;
  948. -webkit-box-shadow:none;
  949. box-shadow:none;
  950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  951. font-weight:400;
  952. font-style:normal;
  953. font-size:14px;
  954. }
  955. #u121558 {
  956. border-width:0px;
  957. position:absolute;
  958. left:274px;
  959. top:995px;
  960. width:43px;
  961. height:20px;
  962. display:flex;
  963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  964. font-weight:400;
  965. font-style:normal;
  966. font-size:14px;
  967. }
  968. #u121558 .text {
  969. position:absolute;
  970. align-self:flex-start;
  971. padding:0px 0px 0px 0px;
  972. box-sizing:border-box;
  973. width:100%;
  974. }
  975. #u121558_text {
  976. border-width:0px;
  977. white-space:nowrap;
  978. text-transform:none;
  979. }
  980. #u121559_div {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:91px;
  986. height:16px;
  987. background:inherit;
  988. background-color:rgba(255, 255, 255, 0);
  989. border:none;
  990. border-top:0px;
  991. border-right:0px;
  992. border-bottom:0px;
  993. border-radius:0px;
  994. border-top-left-radius:0px;
  995. border-bottom-left-radius:0px;
  996. -moz-box-shadow:none;
  997. -webkit-box-shadow:none;
  998. box-shadow:none;
  999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1000. font-weight:400;
  1001. font-style:normal;
  1002. font-size:11px;
  1003. color:#AAAAAA;
  1004. }
  1005. #u121559 {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:274px;
  1009. top:1023px;
  1010. width:91px;
  1011. height:16px;
  1012. display:flex;
  1013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1014. font-weight:400;
  1015. font-style:normal;
  1016. font-size:11px;
  1017. color:#AAAAAA;
  1018. }
  1019. #u121559 .text {
  1020. position:absolute;
  1021. align-self:flex-start;
  1022. padding:0px 0px 0px 0px;
  1023. box-sizing:border-box;
  1024. width:100%;
  1025. }
  1026. #u121559_text {
  1027. border-width:0px;
  1028. white-space:nowrap;
  1029. text-transform:none;
  1030. }
  1031. #u121560_div {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:37px;
  1037. height:35px;
  1038. background:inherit;
  1039. background-color:rgba(255, 255, 255, 0);
  1040. border:none;
  1041. border-top:0px;
  1042. border-right:0px;
  1043. border-bottom:0px;
  1044. border-radius:0px;
  1045. border-top-left-radius:0px;
  1046. border-bottom-left-radius:0px;
  1047. -moz-box-shadow:none;
  1048. -webkit-box-shadow:none;
  1049. box-shadow:none;
  1050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1051. font-weight:500;
  1052. font-style:normal;
  1053. font-size:18px;
  1054. }
  1055. #u121560 {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:212px;
  1059. top:868px;
  1060. width:37px;
  1061. height:35px;
  1062. display:flex;
  1063. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1064. font-weight:500;
  1065. font-style:normal;
  1066. font-size:18px;
  1067. }
  1068. #u121560 .text {
  1069. position:absolute;
  1070. align-self:flex-start;
  1071. padding:5px 0px 5px 0px;
  1072. box-sizing:border-box;
  1073. width:100%;
  1074. }
  1075. #u121560_text {
  1076. border-width:0px;
  1077. white-space:nowrap;
  1078. text-transform:none;
  1079. }
  1080. #u121561 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:0px;
  1084. top:0px;
  1085. width:0px;
  1086. height:0px;
  1087. }
  1088. #u121562_img {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:2px;
  1094. height:32px;
  1095. }
  1096. #u121562 {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:251px;
  1100. top:959px;
  1101. width:1px;
  1102. height:31px;
  1103. display:flex;
  1104. }
  1105. #u121562 .text {
  1106. position:absolute;
  1107. align-self:center;
  1108. padding:2px 2px 2px 2px;
  1109. box-sizing:border-box;
  1110. width:100%;
  1111. }
  1112. #u121562_text {
  1113. border-width:0px;
  1114. word-wrap:break-word;
  1115. text-transform:none;
  1116. visibility:hidden;
  1117. }
  1118. #u121563 {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:0px;
  1122. top:0px;
  1123. width:0px;
  1124. height:0px;
  1125. }
  1126. #u121564_div {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:0px;
  1130. top:0px;
  1131. width:30px;
  1132. height:30px;
  1133. background:inherit;
  1134. background-color:rgba(24, 144, 255, 1);
  1135. border:none;
  1136. border-radius:4px;
  1137. -moz-box-shadow:none;
  1138. -webkit-box-shadow:none;
  1139. box-shadow:none;
  1140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1141. font-weight:400;
  1142. font-style:normal;
  1143. font-size:10px;
  1144. color:#FFFFFF;
  1145. }
  1146. #u121564 {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:236px;
  1150. top:995px;
  1151. width:30px;
  1152. height:30px;
  1153. display:flex;
  1154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1155. font-weight:400;
  1156. font-style:normal;
  1157. font-size:10px;
  1158. color:#FFFFFF;
  1159. }
  1160. #u121564 .text {
  1161. position:absolute;
  1162. align-self:center;
  1163. padding:2px 2px 2px 2px;
  1164. box-sizing:border-box;
  1165. width:100%;
  1166. }
  1167. #u121564_text {
  1168. border-width:0px;
  1169. word-wrap:break-word;
  1170. text-transform:none;
  1171. }
  1172. #u121565 {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:0px;
  1176. top:0px;
  1177. width:0px;
  1178. height:0px;
  1179. }
  1180. #u121566_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:9px;
  1186. height:9px;
  1187. }
  1188. #u121566 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:258px;
  1192. top:1017px;
  1193. width:9px;
  1194. height:9px;
  1195. display:flex;
  1196. }
  1197. #u121566 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u121566_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u121567_img {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:5px;
  1216. height:1px;
  1217. }
  1218. #u121567 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:260px;
  1222. top:1021px;
  1223. width:5px;
  1224. height:1px;
  1225. display:flex;
  1226. }
  1227. #u121567 .text {
  1228. position:absolute;
  1229. align-self:center;
  1230. padding:2px 2px 2px 2px;
  1231. box-sizing:border-box;
  1232. width:100%;
  1233. }
  1234. #u121567_text {
  1235. border-width:0px;
  1236. word-wrap:break-word;
  1237. text-transform:none;
  1238. visibility:hidden;
  1239. }
  1240. #u121568 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:0px;
  1244. top:0px;
  1245. width:0px;
  1246. height:0px;
  1247. }
  1248. #u121569_div {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:0px;
  1252. top:0px;
  1253. width:30px;
  1254. height:30px;
  1255. background:inherit;
  1256. background-color:rgba(24, 144, 255, 1);
  1257. border:none;
  1258. border-radius:4px;
  1259. -moz-box-shadow:none;
  1260. -webkit-box-shadow:none;
  1261. box-shadow:none;
  1262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1263. font-weight:400;
  1264. font-style:normal;
  1265. font-size:12px;
  1266. color:#FFFFFF;
  1267. }
  1268. #u121569 {
  1269. border-width:0px;
  1270. position:absolute;
  1271. left:236px;
  1272. top:925px;
  1273. width:30px;
  1274. height:30px;
  1275. display:flex;
  1276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1277. font-weight:400;
  1278. font-style:normal;
  1279. font-size:12px;
  1280. color:#FFFFFF;
  1281. }
  1282. #u121569 .text {
  1283. position:absolute;
  1284. align-self:center;
  1285. padding:2px 2px 2px 2px;
  1286. box-sizing:border-box;
  1287. width:100%;
  1288. }
  1289. #u121569_text {
  1290. border-width:0px;
  1291. word-wrap:break-word;
  1292. text-transform:none;
  1293. }
  1294. #u121570 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u121571_img {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:9px;
  1308. height:9px;
  1309. }
  1310. #u121571 {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:258px;
  1314. top:947px;
  1315. width:9px;
  1316. height:9px;
  1317. display:flex;
  1318. }
  1319. #u121571 .text {
  1320. position:absolute;
  1321. align-self:center;
  1322. padding:2px 2px 2px 2px;
  1323. box-sizing:border-box;
  1324. width:100%;
  1325. }
  1326. #u121571_text {
  1327. border-width:0px;
  1328. word-wrap:break-word;
  1329. text-transform:none;
  1330. visibility:hidden;
  1331. }
  1332. #u121572_img {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:0px;
  1336. top:0px;
  1337. width:5px;
  1338. height:4px;
  1339. }
  1340. #u121572 {
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:260px;
  1344. top:950px;
  1345. width:5px;
  1346. height:4px;
  1347. display:flex;
  1348. }
  1349. #u121572 .text {
  1350. position:absolute;
  1351. align-self:center;
  1352. padding:2px 2px 2px 2px;
  1353. box-sizing:border-box;
  1354. width:100%;
  1355. }
  1356. #u121572_text {
  1357. border-width:0px;
  1358. word-wrap:break-word;
  1359. text-transform:none;
  1360. visibility:hidden;
  1361. }
  1362. #u121573_div {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:0px;
  1366. top:0px;
  1367. width:81px;
  1368. height:30px;
  1369. background:inherit;
  1370. background-color:rgba(255, 255, 255, 0);
  1371. border:none;
  1372. border-top:0px;
  1373. border-right:0px;
  1374. border-bottom:0px;
  1375. border-radius:0px;
  1376. border-top-left-radius:0px;
  1377. border-bottom-left-radius:0px;
  1378. -moz-box-shadow:none;
  1379. -webkit-box-shadow:none;
  1380. box-shadow:none;
  1381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1382. font-weight:400;
  1383. font-style:normal;
  1384. font-size:14px;
  1385. color:#7F7F7F;
  1386. text-align:right;
  1387. }
  1388. #u121573 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:684px;
  1392. top:454px;
  1393. width:81px;
  1394. height:30px;
  1395. display:flex;
  1396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1397. font-weight:400;
  1398. font-style:normal;
  1399. font-size:14px;
  1400. color:#7F7F7F;
  1401. text-align:right;
  1402. }
  1403. #u121573 .text {
  1404. position:absolute;
  1405. align-self:center;
  1406. padding:5px 10px 5px 0px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u121573_text {
  1411. border-width:0px;
  1412. white-space:nowrap;
  1413. text-transform:none;
  1414. }
  1415. #u121574_div {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:0px;
  1419. top:0px;
  1420. width:67px;
  1421. height:30px;
  1422. background:inherit;
  1423. background-color:rgba(255, 255, 255, 0);
  1424. border:none;
  1425. border-top:0px;
  1426. border-right:0px;
  1427. border-bottom:0px;
  1428. border-radius:0px;
  1429. border-top-left-radius:0px;
  1430. border-bottom-left-radius:0px;
  1431. -moz-box-shadow:none;
  1432. -webkit-box-shadow:none;
  1433. box-shadow:none;
  1434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1435. font-weight:400;
  1436. font-style:normal;
  1437. font-size:14px;
  1438. }
  1439. #u121574 {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:767px;
  1443. top:454px;
  1444. width:67px;
  1445. height:30px;
  1446. display:flex;
  1447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1448. font-weight:400;
  1449. font-style:normal;
  1450. font-size:14px;
  1451. }
  1452. #u121574 .text {
  1453. position:absolute;
  1454. align-self:center;
  1455. padding:5px 10px 5px 0px;
  1456. box-sizing:border-box;
  1457. width:100%;
  1458. }
  1459. #u121574_text {
  1460. border-width:0px;
  1461. white-space:nowrap;
  1462. text-transform:none;
  1463. }
  1464. #u121575_div {
  1465. border-width:0px;
  1466. position:absolute;
  1467. left:0px;
  1468. top:0px;
  1469. width:81px;
  1470. height:30px;
  1471. background:inherit;
  1472. background-color:rgba(255, 255, 255, 0);
  1473. border:none;
  1474. border-top:0px;
  1475. border-right:0px;
  1476. border-bottom:0px;
  1477. border-radius:0px;
  1478. border-top-left-radius:0px;
  1479. border-bottom-left-radius:0px;
  1480. -moz-box-shadow:none;
  1481. -webkit-box-shadow:none;
  1482. box-shadow:none;
  1483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1484. font-weight:400;
  1485. font-style:normal;
  1486. font-size:14px;
  1487. color:#7F7F7F;
  1488. text-align:right;
  1489. }
  1490. #u121575 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:226px;
  1494. top:454px;
  1495. width:81px;
  1496. height:30px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:14px;
  1502. color:#7F7F7F;
  1503. text-align:right;
  1504. }
  1505. #u121575 .text {
  1506. position:absolute;
  1507. align-self:center;
  1508. padding:5px 10px 5px 0px;
  1509. box-sizing:border-box;
  1510. width:100%;
  1511. }
  1512. #u121575_text {
  1513. border-width:0px;
  1514. white-space:nowrap;
  1515. text-transform:none;
  1516. }
  1517. #u121576_div {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:0px;
  1521. top:0px;
  1522. width:123px;
  1523. height:30px;
  1524. background:inherit;
  1525. background-color:rgba(255, 255, 255, 0);
  1526. border:none;
  1527. border-top:0px;
  1528. border-right:0px;
  1529. border-bottom:0px;
  1530. border-radius:0px;
  1531. border-top-left-radius:0px;
  1532. border-bottom-left-radius:0px;
  1533. -moz-box-shadow:none;
  1534. -webkit-box-shadow:none;
  1535. box-shadow:none;
  1536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1537. font-weight:400;
  1538. font-style:normal;
  1539. font-size:14px;
  1540. }
  1541. #u121576 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:307px;
  1545. top:454px;
  1546. width:123px;
  1547. height:30px;
  1548. display:flex;
  1549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1550. font-weight:400;
  1551. font-style:normal;
  1552. font-size:14px;
  1553. }
  1554. #u121576 .text {
  1555. position:absolute;
  1556. align-self:center;
  1557. padding:5px 10px 5px 0px;
  1558. box-sizing:border-box;
  1559. width:100%;
  1560. }
  1561. #u121576_text {
  1562. border-width:0px;
  1563. white-space:nowrap;
  1564. text-transform:none;
  1565. }
  1566. #u121577 {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:0px;
  1572. height:0px;
  1573. }
  1574. #u121578_div {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:81px;
  1580. height:30px;
  1581. background:inherit;
  1582. background-color:rgba(255, 255, 255, 0);
  1583. border:none;
  1584. border-top:0px;
  1585. border-right:0px;
  1586. border-bottom:0px;
  1587. border-radius:0px;
  1588. border-top-left-radius:0px;
  1589. border-bottom-left-radius:0px;
  1590. -moz-box-shadow:none;
  1591. -webkit-box-shadow:none;
  1592. box-shadow:none;
  1593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1594. font-weight:400;
  1595. font-style:normal;
  1596. font-size:14px;
  1597. color:#7F7F7F;
  1598. text-align:right;
  1599. }
  1600. #u121578 {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:226px;
  1604. top:489px;
  1605. width:81px;
  1606. height:30px;
  1607. display:flex;
  1608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1609. font-weight:400;
  1610. font-style:normal;
  1611. font-size:14px;
  1612. color:#7F7F7F;
  1613. text-align:right;
  1614. }
  1615. #u121578 .text {
  1616. position:absolute;
  1617. align-self:center;
  1618. padding:5px 10px 5px 0px;
  1619. box-sizing:border-box;
  1620. width:100%;
  1621. }
  1622. #u121578_text {
  1623. border-width:0px;
  1624. white-space:nowrap;
  1625. text-transform:none;
  1626. }
  1627. #u121579_div {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:67px;
  1633. height:30px;
  1634. background:inherit;
  1635. background-color:rgba(255, 255, 255, 0);
  1636. border:none;
  1637. border-top:0px;
  1638. border-right:0px;
  1639. border-bottom:0px;
  1640. border-radius:0px;
  1641. border-top-left-radius:0px;
  1642. border-bottom-left-radius:0px;
  1643. -moz-box-shadow:none;
  1644. -webkit-box-shadow:none;
  1645. box-shadow:none;
  1646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1647. font-weight:400;
  1648. font-style:normal;
  1649. font-size:14px;
  1650. text-decoration:underline ;
  1651. color:#298FFF;
  1652. }
  1653. #u121579 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:307px;
  1657. top:489px;
  1658. width:67px;
  1659. height:30px;
  1660. display:flex;
  1661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1662. font-weight:400;
  1663. font-style:normal;
  1664. font-size:14px;
  1665. text-decoration:underline ;
  1666. color:#298FFF;
  1667. }
  1668. #u121579 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:5px 10px 5px 0px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u121579_text {
  1676. border-width:0px;
  1677. white-space:nowrap;
  1678. text-transform:none;
  1679. }
  1680. #u121580_div {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:0px;
  1684. top:0px;
  1685. width:81px;
  1686. height:30px;
  1687. background:inherit;
  1688. background-color:rgba(255, 255, 255, 0);
  1689. border:none;
  1690. border-top:0px;
  1691. border-right:0px;
  1692. border-bottom:0px;
  1693. border-radius:0px;
  1694. border-top-left-radius:0px;
  1695. border-bottom-left-radius:0px;
  1696. -moz-box-shadow:none;
  1697. -webkit-box-shadow:none;
  1698. box-shadow:none;
  1699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. font-size:14px;
  1703. color:#7F7F7F;
  1704. text-align:right;
  1705. }
  1706. #u121580 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:686px;
  1710. top:489px;
  1711. width:81px;
  1712. height:30px;
  1713. display:flex;
  1714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:14px;
  1718. color:#7F7F7F;
  1719. text-align:right;
  1720. }
  1721. #u121580 .text {
  1722. position:absolute;
  1723. align-self:center;
  1724. padding:5px 10px 5px 0px;
  1725. box-sizing:border-box;
  1726. width:100%;
  1727. }
  1728. #u121580_text {
  1729. border-width:0px;
  1730. white-space:nowrap;
  1731. text-transform:none;
  1732. }
  1733. #u121581_div {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:71px;
  1739. height:30px;
  1740. background:inherit;
  1741. background-color:rgba(255, 255, 255, 0);
  1742. border:none;
  1743. border-top:0px;
  1744. border-right:0px;
  1745. border-bottom:0px;
  1746. border-radius:0px;
  1747. border-top-left-radius:0px;
  1748. border-bottom-left-radius:0px;
  1749. -moz-box-shadow:none;
  1750. -webkit-box-shadow:none;
  1751. box-shadow:none;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:14px;
  1756. }
  1757. #u121581 {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:767px;
  1761. top:489px;
  1762. width:71px;
  1763. height:30px;
  1764. display:flex;
  1765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1766. font-weight:400;
  1767. font-style:normal;
  1768. font-size:14px;
  1769. }
  1770. #u121581 .text {
  1771. position:absolute;
  1772. align-self:center;
  1773. padding:5px 10px 5px 0px;
  1774. box-sizing:border-box;
  1775. width:100%;
  1776. }
  1777. #u121581_text {
  1778. border-width:0px;
  1779. white-space:nowrap;
  1780. text-transform:none;
  1781. }
  1782. #u121582_div {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:81px;
  1788. height:30px;
  1789. background:inherit;
  1790. background-color:rgba(255, 255, 255, 0);
  1791. border:none;
  1792. border-top:0px;
  1793. border-right:0px;
  1794. border-bottom:0px;
  1795. border-radius:0px;
  1796. border-top-left-radius:0px;
  1797. border-bottom-left-radius:0px;
  1798. -moz-box-shadow:none;
  1799. -webkit-box-shadow:none;
  1800. box-shadow:none;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. font-size:14px;
  1805. color:#7F7F7F;
  1806. text-align:right;
  1807. }
  1808. #u121582 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:684px;
  1812. top:519px;
  1813. width:81px;
  1814. height:30px;
  1815. display:flex;
  1816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. font-size:14px;
  1820. color:#7F7F7F;
  1821. text-align:right;
  1822. }
  1823. #u121582 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:5px 10px 5px 0px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u121582_text {
  1831. border-width:0px;
  1832. white-space:nowrap;
  1833. text-transform:none;
  1834. }
  1835. #u121583_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:235px;
  1841. height:30px;
  1842. background:inherit;
  1843. background-color:rgba(255, 255, 255, 0);
  1844. border:none;
  1845. border-top:0px;
  1846. border-right:0px;
  1847. border-bottom:0px;
  1848. border-radius:0px;
  1849. border-top-left-radius:0px;
  1850. border-bottom-left-radius:0px;
  1851. -moz-box-shadow:none;
  1852. -webkit-box-shadow:none;
  1853. box-shadow:none;
  1854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:14px;
  1858. }
  1859. #u121583 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:767px;
  1863. top:519px;
  1864. width:235px;
  1865. height:30px;
  1866. display:flex;
  1867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1868. font-weight:400;
  1869. font-style:normal;
  1870. font-size:14px;
  1871. }
  1872. #u121583 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:5px 10px 5px 0px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u121583_text {
  1880. border-width:0px;
  1881. white-space:nowrap;
  1882. text-transform:none;
  1883. }
  1884. #u121584_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:81px;
  1890. height:30px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. border:none;
  1894. border-top:0px;
  1895. border-right:0px;
  1896. border-bottom:0px;
  1897. border-radius:0px;
  1898. border-top-left-radius:0px;
  1899. border-bottom-left-radius:0px;
  1900. -moz-box-shadow:none;
  1901. -webkit-box-shadow:none;
  1902. box-shadow:none;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:14px;
  1907. color:#7F7F7F;
  1908. text-align:right;
  1909. }
  1910. #u121584 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:226px;
  1914. top:524px;
  1915. width:81px;
  1916. height:30px;
  1917. display:flex;
  1918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:14px;
  1922. color:#7F7F7F;
  1923. text-align:right;
  1924. }
  1925. #u121584 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:5px 10px 5px 0px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u121584_text {
  1933. border-width:0px;
  1934. white-space:nowrap;
  1935. text-transform:none;
  1936. }
  1937. #u121585_div {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:95px;
  1943. height:30px;
  1944. background:inherit;
  1945. background-color:rgba(255, 255, 255, 0);
  1946. border:none;
  1947. border-top:0px;
  1948. border-right:0px;
  1949. border-bottom:0px;
  1950. border-radius:0px;
  1951. border-top-left-radius:0px;
  1952. border-bottom-left-radius:0px;
  1953. -moz-box-shadow:none;
  1954. -webkit-box-shadow:none;
  1955. box-shadow:none;
  1956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1957. font-weight:400;
  1958. font-style:normal;
  1959. font-size:14px;
  1960. }
  1961. #u121585 {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:307px;
  1965. top:524px;
  1966. width:95px;
  1967. height:30px;
  1968. display:flex;
  1969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:14px;
  1973. }
  1974. #u121585 .text {
  1975. position:absolute;
  1976. align-self:center;
  1977. padding:5px 10px 5px 0px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u121585_text {
  1982. border-width:0px;
  1983. white-space:nowrap;
  1984. text-transform:none;
  1985. }
  1986. #u121586_div {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:81px;
  1992. height:30px;
  1993. background:inherit;
  1994. background-color:rgba(255, 255, 255, 0);
  1995. border:none;
  1996. border-top:0px;
  1997. border-right:0px;
  1998. border-bottom:0px;
  1999. border-radius:0px;
  2000. border-top-left-radius:0px;
  2001. border-bottom-left-radius:0px;
  2002. -moz-box-shadow:none;
  2003. -webkit-box-shadow:none;
  2004. box-shadow:none;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:14px;
  2009. color:#7F7F7F;
  2010. text-align:right;
  2011. }
  2012. #u121586 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:684px;
  2016. top:554px;
  2017. width:81px;
  2018. height:30px;
  2019. display:flex;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:14px;
  2024. color:#7F7F7F;
  2025. text-align:right;
  2026. }
  2027. #u121586 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:5px 10px 5px 0px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u121586_text {
  2035. border-width:0px;
  2036. white-space:nowrap;
  2037. text-transform:none;
  2038. }
  2039. #u121587_div {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:131px;
  2045. height:30px;
  2046. background:inherit;
  2047. background-color:rgba(255, 255, 255, 0);
  2048. border:none;
  2049. border-top:0px;
  2050. border-right:0px;
  2051. border-bottom:0px;
  2052. border-radius:0px;
  2053. border-top-left-radius:0px;
  2054. border-bottom-left-radius:0px;
  2055. -moz-box-shadow:none;
  2056. -webkit-box-shadow:none;
  2057. box-shadow:none;
  2058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2059. font-weight:400;
  2060. font-style:normal;
  2061. font-size:14px;
  2062. }
  2063. #u121587 {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:767px;
  2067. top:554px;
  2068. width:131px;
  2069. height:30px;
  2070. display:flex;
  2071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:14px;
  2075. }
  2076. #u121587 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:5px 10px 5px 0px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u121587_text {
  2084. border-width:0px;
  2085. white-space:nowrap;
  2086. text-transform:none;
  2087. }
  2088. #u121588_div {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:81px;
  2094. height:30px;
  2095. background:inherit;
  2096. background-color:rgba(255, 255, 255, 0);
  2097. border:none;
  2098. border-top:0px;
  2099. border-right:0px;
  2100. border-bottom:0px;
  2101. border-radius:0px;
  2102. border-top-left-radius:0px;
  2103. border-bottom-left-radius:0px;
  2104. -moz-box-shadow:none;
  2105. -webkit-box-shadow:none;
  2106. box-shadow:none;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:14px;
  2111. color:#7F7F7F;
  2112. text-align:right;
  2113. }
  2114. #u121588 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:226px;
  2118. top:559px;
  2119. width:81px;
  2120. height:30px;
  2121. display:flex;
  2122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:14px;
  2126. color:#7F7F7F;
  2127. text-align:right;
  2128. }
  2129. #u121588 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:5px 10px 5px 0px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u121588_text {
  2137. border-width:0px;
  2138. white-space:nowrap;
  2139. text-transform:none;
  2140. }
  2141. #u121589_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:39px;
  2147. height:30px;
  2148. background:inherit;
  2149. background-color:rgba(255, 255, 255, 0);
  2150. border:none;
  2151. border-top:0px;
  2152. border-right:0px;
  2153. border-bottom:0px;
  2154. border-radius:0px;
  2155. border-top-left-radius:0px;
  2156. border-bottom-left-radius:0px;
  2157. -moz-box-shadow:none;
  2158. -webkit-box-shadow:none;
  2159. box-shadow:none;
  2160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2161. font-weight:400;
  2162. font-style:normal;
  2163. font-size:14px;
  2164. }
  2165. #u121589 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:307px;
  2169. top:559px;
  2170. width:39px;
  2171. height:30px;
  2172. display:flex;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:14px;
  2177. }
  2178. #u121589 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:5px 10px 5px 0px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u121589_text {
  2186. border-width:0px;
  2187. white-space:nowrap;
  2188. text-transform:none;
  2189. }
  2190. #u121590_div {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:67px;
  2196. height:30px;
  2197. background:inherit;
  2198. background-color:rgba(255, 255, 255, 0);
  2199. border:none;
  2200. border-top:0px;
  2201. border-right:0px;
  2202. border-bottom:0px;
  2203. border-radius:0px;
  2204. border-top-left-radius:0px;
  2205. border-bottom-left-radius:0px;
  2206. -moz-box-shadow:none;
  2207. -webkit-box-shadow:none;
  2208. box-shadow:none;
  2209. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2210. font-weight:500;
  2211. font-style:normal;
  2212. font-size:14px;
  2213. }
  2214. #u121590 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:226px;
  2218. top:609px;
  2219. width:67px;
  2220. height:30px;
  2221. display:flex;
  2222. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2223. font-weight:500;
  2224. font-style:normal;
  2225. font-size:14px;
  2226. }
  2227. #u121590 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:5px 10px 5px 0px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u121590_text {
  2235. border-width:0px;
  2236. white-space:nowrap;
  2237. text-transform:none;
  2238. }
  2239. #u121591 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:0px;
  2245. height:0px;
  2246. }
  2247. #u121592 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:226px;
  2251. top:649px;
  2252. width:897px;
  2253. height:74px;
  2254. }
  2255. #u121593_img {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:34px;
  2261. height:44px;
  2262. }
  2263. #u121593 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:34px;
  2269. height:44px;
  2270. display:flex;
  2271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2272. font-weight:400;
  2273. font-style:normal;
  2274. font-size:14px;
  2275. color:#FFFFFF;
  2276. }
  2277. #u121593 .text {
  2278. position:absolute;
  2279. align-self:center;
  2280. padding:2px 2px 2px 2px;
  2281. box-sizing:border-box;
  2282. width:100%;
  2283. }
  2284. #u121593_text {
  2285. border-width:0px;
  2286. word-wrap:break-word;
  2287. text-transform:none;
  2288. }
  2289. #u121594_img {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:60px;
  2295. height:44px;
  2296. }
  2297. #u121594 {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:34px;
  2301. top:0px;
  2302. width:60px;
  2303. height:44px;
  2304. display:flex;
  2305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2306. font-weight:400;
  2307. font-style:normal;
  2308. font-size:12px;
  2309. color:#FFFFFF;
  2310. }
  2311. #u121594 .text {
  2312. position:absolute;
  2313. align-self:center;
  2314. padding:2px 2px 2px 2px;
  2315. box-sizing:border-box;
  2316. width:100%;
  2317. }
  2318. #u121594_text {
  2319. border-width:0px;
  2320. word-wrap:break-word;
  2321. text-transform:none;
  2322. }
  2323. #u121595_img {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:64px;
  2329. height:44px;
  2330. }
  2331. #u121595 {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:94px;
  2335. top:0px;
  2336. width:64px;
  2337. height:44px;
  2338. display:flex;
  2339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2340. font-weight:400;
  2341. font-style:normal;
  2342. font-size:12px;
  2343. color:#FFFFFF;
  2344. }
  2345. #u121595 .text {
  2346. position:absolute;
  2347. align-self:center;
  2348. padding:2px 2px 2px 2px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u121595_text {
  2353. border-width:0px;
  2354. word-wrap:break-word;
  2355. text-transform:none;
  2356. }
  2357. #u121596_img {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:0px;
  2361. top:0px;
  2362. width:64px;
  2363. height:44px;
  2364. }
  2365. #u121596 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:158px;
  2369. top:0px;
  2370. width:64px;
  2371. height:44px;
  2372. display:flex;
  2373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2374. font-weight:400;
  2375. font-style:normal;
  2376. font-size:12px;
  2377. color:#FFFFFF;
  2378. }
  2379. #u121596 .text {
  2380. position:absolute;
  2381. align-self:center;
  2382. padding:2px 2px 2px 2px;
  2383. box-sizing:border-box;
  2384. width:100%;
  2385. }
  2386. #u121596_text {
  2387. border-width:0px;
  2388. word-wrap:break-word;
  2389. text-transform:none;
  2390. }
  2391. #u121597_img {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:68px;
  2397. height:44px;
  2398. }
  2399. #u121597 {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:222px;
  2403. top:0px;
  2404. width:68px;
  2405. height:44px;
  2406. display:flex;
  2407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2408. font-weight:400;
  2409. font-style:normal;
  2410. font-size:12px;
  2411. color:#FFFFFF;
  2412. }
  2413. #u121597 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 2px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u121597_text {
  2421. border-width:0px;
  2422. word-wrap:break-word;
  2423. text-transform:none;
  2424. }
  2425. #u121598_img {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:68px;
  2431. height:44px;
  2432. }
  2433. #u121598 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:290px;
  2437. top:0px;
  2438. width:68px;
  2439. height:44px;
  2440. display:flex;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:12px;
  2445. color:#FFFFFF;
  2446. }
  2447. #u121598 .text {
  2448. position:absolute;
  2449. align-self:center;
  2450. padding:2px 2px 2px 2px;
  2451. box-sizing:border-box;
  2452. width:100%;
  2453. }
  2454. #u121598_text {
  2455. border-width:0px;
  2456. word-wrap:break-word;
  2457. text-transform:none;
  2458. }
  2459. #u121599_img {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:68px;
  2465. height:44px;
  2466. }
  2467. #u121599 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:358px;
  2471. top:0px;
  2472. width:68px;
  2473. height:44px;
  2474. display:flex;
  2475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:12px;
  2479. color:#FFFFFF;
  2480. }
  2481. #u121599 .text {
  2482. position:absolute;
  2483. align-self:center;
  2484. padding:2px 2px 2px 2px;
  2485. box-sizing:border-box;
  2486. width:100%;
  2487. }
  2488. #u121599_text {
  2489. border-width:0px;
  2490. word-wrap:break-word;
  2491. text-transform:none;
  2492. }
  2493. #u121600_img {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:68px;
  2499. height:44px;
  2500. }
  2501. #u121600 {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:426px;
  2505. top:0px;
  2506. width:68px;
  2507. height:44px;
  2508. display:flex;
  2509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. font-size:12px;
  2513. color:#FFFFFF;
  2514. }
  2515. #u121600 .text {
  2516. position:absolute;
  2517. align-self:center;
  2518. padding:2px 2px 2px 2px;
  2519. box-sizing:border-box;
  2520. width:100%;
  2521. }
  2522. #u121600_text {
  2523. border-width:0px;
  2524. word-wrap:break-word;
  2525. text-transform:none;
  2526. }
  2527. #u121601_img {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:68px;
  2533. height:44px;
  2534. }
  2535. #u121601 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:494px;
  2539. top:0px;
  2540. width:68px;
  2541. height:44px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:12px;
  2547. color:#FFFFFF;
  2548. }
  2549. #u121601 .text {
  2550. position:absolute;
  2551. align-self:center;
  2552. padding:2px 2px 2px 2px;
  2553. box-sizing:border-box;
  2554. width:100%;
  2555. }
  2556. #u121601_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. }
  2561. #u121602_img {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:61px;
  2567. height:44px;
  2568. }
  2569. #u121602 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:562px;
  2573. top:0px;
  2574. width:61px;
  2575. height:44px;
  2576. display:flex;
  2577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. font-size:12px;
  2581. color:#FFFFFF;
  2582. }
  2583. #u121602 .text {
  2584. position:absolute;
  2585. align-self:center;
  2586. padding:2px 2px 2px 2px;
  2587. box-sizing:border-box;
  2588. width:100%;
  2589. }
  2590. #u121602_text {
  2591. border-width:0px;
  2592. word-wrap:break-word;
  2593. text-transform:none;
  2594. }
  2595. #u121603_img {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:62px;
  2601. height:44px;
  2602. }
  2603. #u121603 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:623px;
  2607. top:0px;
  2608. width:62px;
  2609. height:44px;
  2610. display:flex;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:12px;
  2615. color:#FFFFFF;
  2616. }
  2617. #u121603 .text {
  2618. position:absolute;
  2619. align-self:center;
  2620. padding:2px 2px 2px 2px;
  2621. box-sizing:border-box;
  2622. width:100%;
  2623. }
  2624. #u121603_text {
  2625. border-width:0px;
  2626. word-wrap:break-word;
  2627. text-transform:none;
  2628. }
  2629. #u121604_img {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:46px;
  2635. height:44px;
  2636. }
  2637. #u121604 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:685px;
  2641. top:0px;
  2642. width:46px;
  2643. height:44px;
  2644. display:flex;
  2645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2646. font-weight:400;
  2647. font-style:normal;
  2648. font-size:12px;
  2649. color:#FFFFFF;
  2650. }
  2651. #u121604 .text {
  2652. position:absolute;
  2653. align-self:center;
  2654. padding:2px 2px 2px 2px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u121604_text {
  2659. border-width:0px;
  2660. word-wrap:break-word;
  2661. text-transform:none;
  2662. }
  2663. #u121605_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:46px;
  2669. height:44px;
  2670. }
  2671. #u121605 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:731px;
  2675. top:0px;
  2676. width:46px;
  2677. height:44px;
  2678. display:flex;
  2679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. font-size:12px;
  2683. color:#FFFFFF;
  2684. }
  2685. #u121605 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 2px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u121605_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. }
  2697. #u121606_img {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:60px;
  2703. height:44px;
  2704. }
  2705. #u121606 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:777px;
  2709. top:0px;
  2710. width:60px;
  2711. height:44px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:12px;
  2717. color:#FFFFFF;
  2718. }
  2719. #u121606 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:2px 2px 2px 2px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u121606_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. }
  2731. #u121607_img {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:60px;
  2737. height:44px;
  2738. }
  2739. #u121607 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:837px;
  2743. top:0px;
  2744. width:60px;
  2745. height:44px;
  2746. display:flex;
  2747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:12px;
  2751. color:#FFFFFF;
  2752. }
  2753. #u121607 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:2px 2px 2px 2px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u121607_text {
  2761. border-width:0px;
  2762. word-wrap:break-word;
  2763. text-transform:none;
  2764. }
  2765. #u121608_img {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:34px;
  2771. height:30px;
  2772. }
  2773. #u121608 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:44px;
  2778. width:34px;
  2779. height:30px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:14px;
  2785. }
  2786. #u121608 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:2px 2px 2px 2px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u121608_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. visibility:hidden;
  2798. }
  2799. #u121609_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:60px;
  2805. height:30px;
  2806. }
  2807. #u121609 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:34px;
  2811. top:44px;
  2812. width:60px;
  2813. height:30px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:14px;
  2819. }
  2820. #u121609 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 2px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u121609_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u121610_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:64px;
  2839. height:30px;
  2840. }
  2841. #u121610 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:94px;
  2845. top:44px;
  2846. width:64px;
  2847. height:30px;
  2848. display:flex;
  2849. font-size:14px;
  2850. }
  2851. #u121610 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 2px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u121610_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. visibility:hidden;
  2863. }
  2864. #u121611_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:64px;
  2870. height:30px;
  2871. }
  2872. #u121611 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:158px;
  2876. top:44px;
  2877. width:64px;
  2878. height:30px;
  2879. display:flex;
  2880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:14px;
  2884. }
  2885. #u121611 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 2px 2px 2px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u121611_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. visibility:hidden;
  2897. }
  2898. #u121612_img {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:68px;
  2904. height:30px;
  2905. }
  2906. #u121612 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:222px;
  2910. top:44px;
  2911. width:68px;
  2912. height:30px;
  2913. display:flex;
  2914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2915. font-weight:400;
  2916. font-style:normal;
  2917. font-size:14px;
  2918. }
  2919. #u121612 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:2px 2px 2px 2px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u121612_text {
  2927. border-width:0px;
  2928. word-wrap:break-word;
  2929. text-transform:none;
  2930. visibility:hidden;
  2931. }
  2932. #u121613_img {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:68px;
  2938. height:30px;
  2939. }
  2940. #u121613 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:290px;
  2944. top:44px;
  2945. width:68px;
  2946. height:30px;
  2947. display:flex;
  2948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2949. font-weight:400;
  2950. font-style:normal;
  2951. font-size:14px;
  2952. }
  2953. #u121613 .text {
  2954. position:absolute;
  2955. align-self:center;
  2956. padding:2px 2px 2px 2px;
  2957. box-sizing:border-box;
  2958. width:100%;
  2959. }
  2960. #u121613_text {
  2961. border-width:0px;
  2962. word-wrap:break-word;
  2963. text-transform:none;
  2964. visibility:hidden;
  2965. }
  2966. #u121614_img {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:68px;
  2972. height:30px;
  2973. }
  2974. #u121614 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:358px;
  2978. top:44px;
  2979. width:68px;
  2980. height:30px;
  2981. display:flex;
  2982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2983. font-weight:400;
  2984. font-style:normal;
  2985. font-size:14px;
  2986. }
  2987. #u121614 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 2px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u121614_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u121615_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:68px;
  3006. height:30px;
  3007. }
  3008. #u121615 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:426px;
  3012. top:44px;
  3013. width:68px;
  3014. height:30px;
  3015. display:flex;
  3016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3017. font-weight:400;
  3018. font-style:normal;
  3019. font-size:14px;
  3020. }
  3021. #u121615 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 2px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u121615_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. visibility:hidden;
  3033. }
  3034. #u121616_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:68px;
  3040. height:30px;
  3041. }
  3042. #u121616 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:494px;
  3046. top:44px;
  3047. width:68px;
  3048. height:30px;
  3049. display:flex;
  3050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:14px;
  3054. }
  3055. #u121616 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 2px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u121616_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. }
  3067. #u121617_img {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:61px;
  3073. height:30px;
  3074. }
  3075. #u121617 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:562px;
  3079. top:44px;
  3080. width:61px;
  3081. height:30px;
  3082. display:flex;
  3083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3084. font-weight:400;
  3085. font-style:normal;
  3086. font-size:14px;
  3087. }
  3088. #u121617 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:2px 2px 2px 2px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u121617_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. }
  3100. #u121618_img {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:62px;
  3106. height:30px;
  3107. }
  3108. #u121618 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:623px;
  3112. top:44px;
  3113. width:62px;
  3114. height:30px;
  3115. display:flex;
  3116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:14px;
  3120. }
  3121. #u121618 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 2px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u121618_text {
  3129. border-width:0px;
  3130. word-wrap:break-word;
  3131. text-transform:none;
  3132. }
  3133. #u121619_img {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:46px;
  3139. height:30px;
  3140. }
  3141. #u121619 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:685px;
  3145. top:44px;
  3146. width:46px;
  3147. height:30px;
  3148. display:flex;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:14px;
  3153. }
  3154. #u121619 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 2px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u121619_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u121620_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:46px;
  3173. height:30px;
  3174. }
  3175. #u121620 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:731px;
  3179. top:44px;
  3180. width:46px;
  3181. height:30px;
  3182. display:flex;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:14px;
  3187. }
  3188. #u121620 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 2px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u121620_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. visibility:hidden;
  3200. }
  3201. #u121621_img {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:60px;
  3207. height:30px;
  3208. }
  3209. #u121621 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:777px;
  3213. top:44px;
  3214. width:60px;
  3215. height:30px;
  3216. display:flex;
  3217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. font-size:14px;
  3221. }
  3222. #u121621 .text {
  3223. position:absolute;
  3224. align-self:center;
  3225. padding:2px 2px 2px 2px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u121621_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. }
  3234. #u121622_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:60px;
  3240. height:30px;
  3241. }
  3242. #u121622 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:837px;
  3246. top:44px;
  3247. width:60px;
  3248. height:30px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:14px;
  3254. }
  3255. #u121622 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u121622_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. }
  3267. #u121623 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:0px;
  3273. height:0px;
  3274. }
  3275. #u121624_div {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:897px;
  3281. height:40px;
  3282. background:inherit;
  3283. background-color:rgba(255, 255, 255, 1);
  3284. box-sizing:border-box;
  3285. border-width:1px;
  3286. border-style:solid;
  3287. border-color:rgba(215, 215, 215, 1);
  3288. border-radius:0px;
  3289. -moz-box-shadow:none;
  3290. -webkit-box-shadow:none;
  3291. box-shadow:none;
  3292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. font-size:14px;
  3296. color:#AAAAAA;
  3297. text-align:center;
  3298. line-height:30px;
  3299. }
  3300. #u121624 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:226px;
  3304. top:722px;
  3305. width:897px;
  3306. height:40px;
  3307. display:flex;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:14px;
  3312. color:#AAAAAA;
  3313. text-align:center;
  3314. line-height:30px;
  3315. }
  3316. #u121624 .text {
  3317. position:absolute;
  3318. align-self:center;
  3319. padding:5px 10px 5px 10px;
  3320. box-sizing:border-box;
  3321. width:100%;
  3322. }
  3323. #u121624_text {
  3324. border-width:0px;
  3325. word-wrap:break-word;
  3326. text-transform:none;
  3327. visibility:hidden;
  3328. }
  3329. #u121625_div {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:81px;
  3335. height:30px;
  3336. background:inherit;
  3337. background-color:rgba(255, 255, 255, 0);
  3338. border:none;
  3339. border-top:0px;
  3340. border-right:0px;
  3341. border-bottom:0px;
  3342. border-radius:0px;
  3343. border-top-left-radius:0px;
  3344. border-bottom-left-radius:0px;
  3345. -moz-box-shadow:none;
  3346. -webkit-box-shadow:none;
  3347. box-shadow:none;
  3348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3349. font-weight:400;
  3350. font-style:normal;
  3351. font-size:14px;
  3352. color:#7F7F7F;
  3353. text-align:right;
  3354. }
  3355. #u121625 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:961px;
  3359. top:727px;
  3360. width:81px;
  3361. height:30px;
  3362. display:flex;
  3363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3364. font-weight:400;
  3365. font-style:normal;
  3366. font-size:14px;
  3367. color:#7F7F7F;
  3368. text-align:right;
  3369. }
  3370. #u121625 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:5px 10px 5px 0px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u121625_text {
  3378. border-width:0px;
  3379. white-space:nowrap;
  3380. text-transform:none;
  3381. }
  3382. #u121626_div {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:71px;
  3388. height:30px;
  3389. background:inherit;
  3390. background-color:rgba(255, 255, 255, 0);
  3391. border:none;
  3392. border-top:0px;
  3393. border-right:0px;
  3394. border-bottom:0px;
  3395. border-radius:0px;
  3396. border-top-left-radius:0px;
  3397. border-bottom-left-radius:0px;
  3398. -moz-box-shadow:none;
  3399. -webkit-box-shadow:none;
  3400. box-shadow:none;
  3401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:14px;
  3405. }
  3406. #u121626 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:1042px;
  3410. top:727px;
  3411. width:71px;
  3412. height:30px;
  3413. display:flex;
  3414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:14px;
  3418. }
  3419. #u121626 .text {
  3420. position:absolute;
  3421. align-self:center;
  3422. padding:5px 10px 5px 0px;
  3423. box-sizing:border-box;
  3424. width:100%;
  3425. }
  3426. #u121626_text {
  3427. border-width:0px;
  3428. white-space:nowrap;
  3429. text-transform:none;
  3430. }
  3431. #u121627 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:0px;
  3437. height:0px;
  3438. }
  3439. #u121628_div {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:897px;
  3445. height:40px;
  3446. background:inherit;
  3447. background-color:rgba(255, 255, 255, 1);
  3448. box-sizing:border-box;
  3449. border-width:1px;
  3450. border-style:solid;
  3451. border-color:rgba(215, 215, 215, 1);
  3452. border-radius:0px;
  3453. -moz-box-shadow:none;
  3454. -webkit-box-shadow:none;
  3455. box-shadow:none;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:14px;
  3460. color:#AAAAAA;
  3461. text-align:center;
  3462. line-height:30px;
  3463. }
  3464. #u121628 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:226px;
  3468. top:762px;
  3469. width:897px;
  3470. height:40px;
  3471. display:flex;
  3472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3473. font-weight:400;
  3474. font-style:normal;
  3475. font-size:14px;
  3476. color:#AAAAAA;
  3477. text-align:center;
  3478. line-height:30px;
  3479. }
  3480. #u121628 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:5px 10px 5px 10px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u121628_text {
  3488. border-width:0px;
  3489. word-wrap:break-word;
  3490. text-transform:none;
  3491. visibility:hidden;
  3492. }
  3493. #u121629_div {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:95px;
  3499. height:36px;
  3500. background:inherit;
  3501. background-color:rgba(255, 255, 255, 0);
  3502. border:none;
  3503. border-top:0px;
  3504. border-right:0px;
  3505. border-bottom:0px;
  3506. border-radius:0px;
  3507. border-top-left-radius:0px;
  3508. border-bottom-left-radius:0px;
  3509. -moz-box-shadow:none;
  3510. -webkit-box-shadow:none;
  3511. box-shadow:none;
  3512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:14px;
  3516. color:#7F7F7F;
  3517. text-align:right;
  3518. }
  3519. #u121629 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:801px;
  3523. top:764px;
  3524. width:95px;
  3525. height:36px;
  3526. display:flex;
  3527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:14px;
  3531. color:#7F7F7F;
  3532. text-align:right;
  3533. }
  3534. #u121629 .text {
  3535. position:absolute;
  3536. align-self:center;
  3537. padding:5px 10px 5px 0px;
  3538. box-sizing:border-box;
  3539. width:100%;
  3540. }
  3541. #u121629_text {
  3542. border-width:0px;
  3543. white-space:nowrap;
  3544. text-transform:none;
  3545. }
  3546. #u121630_div {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:71px;
  3552. height:30px;
  3553. background:inherit;
  3554. background-color:rgba(255, 255, 255, 0);
  3555. border:none;
  3556. border-top:0px;
  3557. border-right:0px;
  3558. border-bottom:0px;
  3559. border-radius:0px;
  3560. border-top-left-radius:0px;
  3561. border-bottom-left-radius:0px;
  3562. -moz-box-shadow:none;
  3563. -webkit-box-shadow:none;
  3564. box-shadow:none;
  3565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3566. font-weight:400;
  3567. font-style:normal;
  3568. font-size:14px;
  3569. }
  3570. #u121630 {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:896px;
  3574. top:767px;
  3575. width:71px;
  3576. height:30px;
  3577. display:flex;
  3578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:14px;
  3582. }
  3583. #u121630 .text {
  3584. position:absolute;
  3585. align-self:center;
  3586. padding:5px 10px 5px 0px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u121630_text {
  3591. border-width:0px;
  3592. white-space:nowrap;
  3593. text-transform:none;
  3594. }
  3595. #u121631_div {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:53px;
  3601. height:36px;
  3602. background:inherit;
  3603. background-color:rgba(255, 255, 255, 0);
  3604. border:none;
  3605. border-top:0px;
  3606. border-right:0px;
  3607. border-bottom:0px;
  3608. border-radius:0px;
  3609. border-top-left-radius:0px;
  3610. border-bottom-left-radius:0px;
  3611. -moz-box-shadow:none;
  3612. -webkit-box-shadow:none;
  3613. box-shadow:none;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:14px;
  3618. color:#7F7F7F;
  3619. text-align:right;
  3620. }
  3621. #u121631 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:981px;
  3625. top:764px;
  3626. width:53px;
  3627. height:36px;
  3628. display:flex;
  3629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:14px;
  3633. color:#7F7F7F;
  3634. text-align:right;
  3635. }
  3636. #u121631 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:5px 10px 5px 0px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u121631_text {
  3644. border-width:0px;
  3645. white-space:nowrap;
  3646. text-transform:none;
  3647. }
  3648. #u121632_div {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:79px;
  3654. height:30px;
  3655. background:inherit;
  3656. background-color:rgba(255, 255, 255, 0);
  3657. border:none;
  3658. border-top:0px;
  3659. border-right:0px;
  3660. border-bottom:0px;
  3661. border-radius:0px;
  3662. border-top-left-radius:0px;
  3663. border-bottom-left-radius:0px;
  3664. -moz-box-shadow:none;
  3665. -webkit-box-shadow:none;
  3666. box-shadow:none;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:14px;
  3671. }
  3672. #u121632 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:1034px;
  3676. top:767px;
  3677. width:79px;
  3678. height:30px;
  3679. display:flex;
  3680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3681. font-weight:400;
  3682. font-style:normal;
  3683. font-size:14px;
  3684. }
  3685. #u121632 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:5px 10px 5px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u121632_text {
  3693. border-width:0px;
  3694. white-space:nowrap;
  3695. text-transform:none;
  3696. }