styles.css 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3354px;
  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. #u111500_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u111500 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u111500 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u111500_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u111501_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u111501 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u111501 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u111501_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u111502_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u111502 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u111502 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u111502_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u111503 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u111504_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u111504 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u111504 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u111504_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u111505_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u111505 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u111505 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u111505_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u111506_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u111506 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u111506 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u111506_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u111507 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u111508_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u111508_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u111508_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u111508 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u111508 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u111508_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u111508.disabled {
  356. }
  357. .u111508_input_option {
  358. font-size:14px;
  359. }
  360. #u111509_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u111509 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u111509 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u111509_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u111510_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u111510 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u111510 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u111510_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u111511_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u111511 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u111511 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u111511_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u111512 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u111513_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u111513 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u111513 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u111513_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u111514_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u111514 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u111514 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u111514_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u111515 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u111516_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u111516 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u111516 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u111516_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u111517_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u111517 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u111517 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u111517_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u111518 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u111519_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u111519 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u111519 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u111519_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u111520_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u111520 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u111520 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u111520_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u111521 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u111522_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u111522 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u111522 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u111522_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u111523_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u111523 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u111523 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u111523_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u111524 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u111525_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u111525 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u111525 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u111525_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u111526_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u111526 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u111526 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u111526_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u111527 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u111528_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u111528 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u111528 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u111528_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u111529_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u111529 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u111529 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u111529_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u111530 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u111531_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u111531 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u111531 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u111531_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u111532_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u111532 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u111532 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u111532_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u111533 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u111534_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u111534 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u111534 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u111534_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u111535_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u111535 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u111535 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u111535_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u111536 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u111537_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u111537 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u111537 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u111537_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u111538_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u111538 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u111538 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u111538_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u111539 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u111540_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u111540 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u111540 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u111540_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u111541_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u111541 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u111541 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u111541_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u111542_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u111542 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u111542 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u111542_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u111543_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u111543 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u111543 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u111543_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u111544_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u111544 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u111544 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u111544_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u111545_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u111545 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u111545 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u111545_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u111546 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u111547_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u111547 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u111547 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u111547_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u111548_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u111548 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u111548 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u111548_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u111549 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u111550_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u111550 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u111550 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u111550_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u111551_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u111551 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u111551 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u111551_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u111552_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1381px;
  1644. height:1522px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(215, 215, 215, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:12px;
  1659. color:#FFFFFF;
  1660. text-align:left;
  1661. }
  1662. #u111552 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:330px;
  1666. top:50px;
  1667. width:1381px;
  1668. height:1522px;
  1669. display:flex;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:12px;
  1674. color:#FFFFFF;
  1675. text-align:left;
  1676. }
  1677. #u111552 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 50px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u111552_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. visibility:hidden;
  1689. }
  1690. #u111553_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:1381px;
  1696. height:1154px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 1);
  1699. border:none;
  1700. border-radius:0px;
  1701. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1702. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1703. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1704. }
  1705. #u111553 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:330px;
  1709. top:50px;
  1710. width:1381px;
  1711. height:1154px;
  1712. display:flex;
  1713. }
  1714. #u111553 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:2px 2px 2px 2px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u111553_text {
  1722. border-width:0px;
  1723. word-wrap:break-word;
  1724. text-transform:none;
  1725. visibility:hidden;
  1726. }
  1727. #u111554_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:80px;
  1733. height:30px;
  1734. background:inherit;
  1735. background-color:rgba(24, 144, 255, 1);
  1736. border:none;
  1737. border-radius:4px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:12px;
  1745. color:#FFFFFF;
  1746. }
  1747. #u111554 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:538px;
  1751. top:150px;
  1752. width:80px;
  1753. height:30px;
  1754. display:flex;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. font-size:12px;
  1759. color:#FFFFFF;
  1760. }
  1761. #u111554 .text {
  1762. position:absolute;
  1763. align-self:center;
  1764. padding:5px 15px 5px 15px;
  1765. box-sizing:border-box;
  1766. width:100%;
  1767. }
  1768. #u111554_text {
  1769. border-width:0px;
  1770. word-wrap:break-word;
  1771. text-transform:none;
  1772. }
  1773. #u111555_div {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:109px;
  1779. height:50px;
  1780. background:inherit;
  1781. background-color:rgba(255, 255, 255, 0);
  1782. border:none;
  1783. border-left:0px;
  1784. border-top:0px;
  1785. border-right:0px;
  1786. border-radius:0px;
  1787. border-bottom-right-radius:0px;
  1788. border-bottom-left-radius:0px;
  1789. -moz-box-shadow:none;
  1790. -webkit-box-shadow:none;
  1791. box-shadow:none;
  1792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1793. font-weight:400;
  1794. font-style:normal;
  1795. font-size:18px;
  1796. }
  1797. #u111555 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:349px;
  1801. top:50px;
  1802. width:109px;
  1803. height:50px;
  1804. display:flex;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:18px;
  1809. }
  1810. #u111555 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:0px 0px 0px 0px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u111555_text {
  1818. border-width:0px;
  1819. white-space:nowrap;
  1820. text-transform:none;
  1821. }
  1822. #u111556_div {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:1322px;
  1828. height:161px;
  1829. background:inherit;
  1830. background-color:rgba(242, 242, 242, 1);
  1831. border:none;
  1832. border-radius:4px;
  1833. -moz-box-shadow:none;
  1834. -webkit-box-shadow:none;
  1835. box-shadow:none;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:18px;
  1840. }
  1841. #u111556 {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:349px;
  1845. top:160px;
  1846. width:1322px;
  1847. height:161px;
  1848. display:flex;
  1849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. font-size:18px;
  1853. }
  1854. #u111556 .text {
  1855. position:absolute;
  1856. align-self:center;
  1857. padding:2px 2px 2px 2px;
  1858. box-sizing:border-box;
  1859. width:100%;
  1860. }
  1861. #u111556_text {
  1862. border-width:0px;
  1863. word-wrap:break-word;
  1864. text-transform:none;
  1865. }
  1866. #u111557_div {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:103px;
  1872. height:30px;
  1873. background:inherit;
  1874. background-color:rgba(25, 140, 251, 1);
  1875. border:none;
  1876. border-radius:4px;
  1877. -moz-box-shadow:none;
  1878. -webkit-box-shadow:none;
  1879. box-shadow:none;
  1880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:12px;
  1884. color:#FFFFFF;
  1885. }
  1886. #u111557 {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:349px;
  1890. top:110px;
  1891. width:103px;
  1892. height:30px;
  1893. display:flex;
  1894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1895. font-weight:400;
  1896. font-style:normal;
  1897. font-size:12px;
  1898. color:#FFFFFF;
  1899. }
  1900. #u111557 .text {
  1901. position:absolute;
  1902. align-self:center;
  1903. padding:5px 15px 5px 15px;
  1904. box-sizing:border-box;
  1905. width:100%;
  1906. }
  1907. #u111557_text {
  1908. border-width:0px;
  1909. white-space:nowrap;
  1910. text-transform:none;
  1911. }
  1912. #u111558_div {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:1381px;
  1918. height:1154px;
  1919. background:inherit;
  1920. background-color:rgba(255, 255, 255, 1);
  1921. border:none;
  1922. border-radius:0px;
  1923. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1924. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1925. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1926. }
  1927. #u111558 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:1973px;
  1931. top:50px;
  1932. width:1381px;
  1933. height:1154px;
  1934. display:flex;
  1935. }
  1936. #u111558 .text {
  1937. position:absolute;
  1938. align-self:center;
  1939. padding:2px 2px 2px 2px;
  1940. box-sizing:border-box;
  1941. width:100%;
  1942. }
  1943. #u111558_text {
  1944. border-width:0px;
  1945. word-wrap:break-word;
  1946. text-transform:none;
  1947. visibility:hidden;
  1948. }
  1949. #u111559_div {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:80px;
  1955. height:30px;
  1956. background:inherit;
  1957. background-color:rgba(24, 144, 255, 1);
  1958. border:none;
  1959. border-radius:4px;
  1960. -moz-box-shadow:none;
  1961. -webkit-box-shadow:none;
  1962. box-shadow:none;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:12px;
  1967. color:#FFFFFF;
  1968. }
  1969. #u111559 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:2181px;
  1973. top:150px;
  1974. width:80px;
  1975. height:30px;
  1976. display:flex;
  1977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1978. font-weight:400;
  1979. font-style:normal;
  1980. font-size:12px;
  1981. color:#FFFFFF;
  1982. }
  1983. #u111559 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:5px 15px 5px 15px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u111559_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. }
  1995. #u111560_div {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:109px;
  2001. height:50px;
  2002. background:inherit;
  2003. background-color:rgba(255, 255, 255, 0);
  2004. border:none;
  2005. border-left:0px;
  2006. border-top:0px;
  2007. border-right:0px;
  2008. border-radius:0px;
  2009. border-bottom-right-radius:0px;
  2010. border-bottom-left-radius:0px;
  2011. -moz-box-shadow:none;
  2012. -webkit-box-shadow:none;
  2013. box-shadow:none;
  2014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2015. font-weight:400;
  2016. font-style:normal;
  2017. font-size:18px;
  2018. }
  2019. #u111560 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:1992px;
  2023. top:50px;
  2024. width:109px;
  2025. height:50px;
  2026. display:flex;
  2027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:18px;
  2031. }
  2032. #u111560 .text {
  2033. position:absolute;
  2034. align-self:center;
  2035. padding:0px 0px 0px 0px;
  2036. box-sizing:border-box;
  2037. width:100%;
  2038. }
  2039. #u111560_text {
  2040. border-width:0px;
  2041. white-space:nowrap;
  2042. text-transform:none;
  2043. }
  2044. #u111561_div {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:1322px;
  2050. height:200px;
  2051. background:inherit;
  2052. background-color:rgba(242, 242, 242, 0);
  2053. box-sizing:border-box;
  2054. border-width:1px;
  2055. border-style:solid;
  2056. border-color:rgba(215, 215, 215, 1);
  2057. border-radius:4px;
  2058. -moz-box-shadow:none;
  2059. -webkit-box-shadow:none;
  2060. box-shadow:none;
  2061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2062. font-weight:400;
  2063. font-style:normal;
  2064. font-size:18px;
  2065. }
  2066. #u111561 {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:1992px;
  2070. top:160px;
  2071. width:1322px;
  2072. height:200px;
  2073. display:flex;
  2074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2075. font-weight:400;
  2076. font-style:normal;
  2077. font-size:18px;
  2078. }
  2079. #u111561 .text {
  2080. position:absolute;
  2081. align-self:center;
  2082. padding:2px 2px 2px 2px;
  2083. box-sizing:border-box;
  2084. width:100%;
  2085. }
  2086. #u111561_text {
  2087. border-width:0px;
  2088. word-wrap:break-word;
  2089. text-transform:none;
  2090. visibility:hidden;
  2091. }
  2092. #u111562_div {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:0px;
  2096. top:0px;
  2097. width:103px;
  2098. height:30px;
  2099. background:inherit;
  2100. background-color:rgba(25, 140, 251, 1);
  2101. border:none;
  2102. border-radius:4px;
  2103. -moz-box-shadow:none;
  2104. -webkit-box-shadow:none;
  2105. box-shadow:none;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:12px;
  2110. color:#FFFFFF;
  2111. }
  2112. #u111562 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:1992px;
  2116. top:110px;
  2117. width:103px;
  2118. height:30px;
  2119. display:flex;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:12px;
  2124. color:#FFFFFF;
  2125. }
  2126. #u111562 .text {
  2127. position:absolute;
  2128. align-self:center;
  2129. padding:5px 15px 5px 15px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u111562_text {
  2134. border-width:0px;
  2135. white-space:nowrap;
  2136. text-transform:none;
  2137. }
  2138. #u111563_img {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:12px;
  2144. height:12px;
  2145. }
  2146. #u111563 {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:2102px;
  2150. top:119px;
  2151. width:12px;
  2152. height:12px;
  2153. display:flex;
  2154. }
  2155. #u111563 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:2px 2px 2px 2px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u111563_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. visibility:hidden;
  2167. }
  2168. #u111564_div {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:553px;
  2174. height:124px;
  2175. background:inherit;
  2176. background-color:rgba(242, 242, 242, 0);
  2177. border:none;
  2178. border-radius:4px;
  2179. -moz-box-shadow:none;
  2180. -webkit-box-shadow:none;
  2181. box-shadow:none;
  2182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:14px;
  2186. text-align:left;
  2187. line-height:30px;
  2188. }
  2189. #u111564 {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:2012px;
  2193. top:220px;
  2194. width:553px;
  2195. height:124px;
  2196. display:flex;
  2197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2198. font-weight:400;
  2199. font-style:normal;
  2200. font-size:14px;
  2201. text-align:left;
  2202. line-height:30px;
  2203. }
  2204. #u111564 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:2px 2px 2px 2px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u111564_text {
  2212. border-width:0px;
  2213. white-space:nowrap;
  2214. text-transform:none;
  2215. }
  2216. #u111565_div {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:1322px;
  2222. height:50px;
  2223. background:inherit;
  2224. background-color:rgba(242, 242, 242, 1);
  2225. box-sizing:border-box;
  2226. border-width:1px;
  2227. border-style:solid;
  2228. border-color:rgba(215, 215, 215, 1);
  2229. border-bottom:0px;
  2230. border-radius:4px;
  2231. border-bottom-right-radius:0px;
  2232. border-bottom-left-radius:0px;
  2233. -moz-box-shadow:none;
  2234. -webkit-box-shadow:none;
  2235. box-shadow:none;
  2236. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2237. font-weight:500;
  2238. font-style:normal;
  2239. font-size:18px;
  2240. text-align:left;
  2241. }
  2242. #u111565 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:1992px;
  2246. top:160px;
  2247. width:1322px;
  2248. height:50px;
  2249. display:flex;
  2250. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2251. font-weight:500;
  2252. font-style:normal;
  2253. font-size:18px;
  2254. text-align:left;
  2255. }
  2256. #u111565 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:2px 2px 2px 20px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u111565_text {
  2264. border-width:0px;
  2265. word-wrap:break-word;
  2266. text-transform:none;
  2267. }
  2268. #u111566_div {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:70px;
  2274. height:34px;
  2275. background:inherit;
  2276. background-color:rgba(242, 242, 242, 0);
  2277. border:none;
  2278. border-radius:4px;
  2279. -moz-box-shadow:none;
  2280. -webkit-box-shadow:none;
  2281. box-shadow:none;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:14px;
  2286. color:#1890FF;
  2287. text-align:left;
  2288. line-height:30px;
  2289. }
  2290. #u111566 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:3224px;
  2294. top:168px;
  2295. width:70px;
  2296. height:34px;
  2297. display:flex;
  2298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2299. font-weight:400;
  2300. font-style:normal;
  2301. font-size:14px;
  2302. color:#1890FF;
  2303. text-align:left;
  2304. line-height:30px;
  2305. }
  2306. #u111566 .text {
  2307. position:absolute;
  2308. align-self:center;
  2309. padding:2px 2px 2px 2px;
  2310. box-sizing:border-box;
  2311. width:100%;
  2312. }
  2313. #u111566_text {
  2314. border-width:0px;
  2315. white-space:nowrap;
  2316. text-transform:none;
  2317. }
  2318. #u111567 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:0px;
  2324. height:0px;
  2325. }
  2326. #u111568_div {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:270px;
  2332. height:880px;
  2333. background:inherit;
  2334. background-color:rgba(51, 51, 51, 1);
  2335. border:none;
  2336. border-left:0px;
  2337. border-top:0px;
  2338. border-right:0px;
  2339. border-radius:0px;
  2340. border-bottom-right-radius:0px;
  2341. border-bottom-left-radius:0px;
  2342. -moz-box-shadow:none;
  2343. -webkit-box-shadow:none;
  2344. box-shadow:none;
  2345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2346. font-weight:400;
  2347. font-style:normal;
  2348. font-size:14px;
  2349. color:#FFFFFF;
  2350. line-height:30px;
  2351. }
  2352. #u111568 {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:478px;
  2356. top:125px;
  2357. width:270px;
  2358. height:880px;
  2359. display:flex;
  2360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:14px;
  2364. color:#FFFFFF;
  2365. line-height:30px;
  2366. }
  2367. #u111568 .text {
  2368. position:absolute;
  2369. align-self:center;
  2370. padding:20px 20px 20px 20px;
  2371. box-sizing:border-box;
  2372. width:100%;
  2373. }
  2374. #u111568_text {
  2375. border-width:0px;
  2376. word-wrap:break-word;
  2377. text-transform:none;
  2378. }
  2379. #u111569_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:12px;
  2385. height:12px;
  2386. }
  2387. #u111569 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:459px;
  2391. top:119px;
  2392. width:12px;
  2393. height:12px;
  2394. display:flex;
  2395. }
  2396. #u111569 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 2px 2px 2px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u111569_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. visibility:hidden;
  2408. }
  2409. #u111570 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:0px;
  2415. height:0px;
  2416. }
  2417. #u111571_div {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:200px;
  2423. height:1702px;
  2424. background:inherit;
  2425. background-color:rgba(255, 255, 255, 1);
  2426. box-sizing:border-box;
  2427. border-width:1px;
  2428. border-style:solid;
  2429. border-color:rgba(215, 215, 215, 1);
  2430. border-radius:0px;
  2431. -moz-box-shadow:none;
  2432. -webkit-box-shadow:none;
  2433. box-shadow:none;
  2434. }
  2435. #u111571 {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:120px;
  2439. top:50px;
  2440. width:200px;
  2441. height:1702px;
  2442. display:flex;
  2443. }
  2444. #u111571 .text {
  2445. position:absolute;
  2446. align-self:center;
  2447. padding:2px 2px 2px 2px;
  2448. box-sizing:border-box;
  2449. width:100%;
  2450. }
  2451. #u111571_text {
  2452. border-width:0px;
  2453. word-wrap:break-word;
  2454. text-transform:none;
  2455. visibility:hidden;
  2456. }
  2457. #u111572_div {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:0px;
  2461. top:0px;
  2462. width:200px;
  2463. height:60px;
  2464. background:inherit;
  2465. background-color:rgba(224, 231, 247, 1);
  2466. border:none;
  2467. border-radius:0px;
  2468. -moz-box-shadow:none;
  2469. -webkit-box-shadow:none;
  2470. box-shadow:none;
  2471. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2472. font-weight:500;
  2473. font-style:normal;
  2474. font-size:18px;
  2475. }
  2476. #u111572 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:120px;
  2480. top:50px;
  2481. width:200px;
  2482. height:60px;
  2483. display:flex;
  2484. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2485. font-weight:500;
  2486. font-style:normal;
  2487. font-size:18px;
  2488. }
  2489. #u111572 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:0px 0px 0px 20px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u111572_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. }
  2501. #u111573_img {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:201px;
  2507. height:2px;
  2508. }
  2509. #u111573 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:120px;
  2513. top:1180px;
  2514. width:200px;
  2515. height:1px;
  2516. display:flex;
  2517. }
  2518. #u111573 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 2px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u111573_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. visibility:hidden;
  2530. }
  2531. #u111574_div {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:97px;
  2537. height:22px;
  2538. background:inherit;
  2539. background-color:rgba(255, 255, 255, 0);
  2540. border:none;
  2541. border-radius:0px;
  2542. -moz-box-shadow:none;
  2543. -webkit-box-shadow:none;
  2544. box-shadow:none;
  2545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2546. font-weight:400;
  2547. font-style:normal;
  2548. font-size:16px;
  2549. }
  2550. #u111574 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:147px;
  2554. top:1459px;
  2555. width:97px;
  2556. height:22px;
  2557. display:flex;
  2558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2559. font-weight:400;
  2560. font-style:normal;
  2561. font-size:16px;
  2562. }
  2563. #u111574 .text {
  2564. position:absolute;
  2565. align-self:flex-start;
  2566. padding:0px 0px 0px 0px;
  2567. box-sizing:border-box;
  2568. width:100%;
  2569. }
  2570. #u111574_text {
  2571. border-width:0px;
  2572. word-wrap:break-word;
  2573. text-transform:none;
  2574. }
  2575. #u111575_div {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:49px;
  2581. height:17px;
  2582. background:inherit;
  2583. background-color:rgba(255, 255, 255, 0);
  2584. border:none;
  2585. border-radius:0px;
  2586. -moz-box-shadow:none;
  2587. -webkit-box-shadow:none;
  2588. box-shadow:none;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:12px;
  2593. color:#AAAAAA;
  2594. }
  2595. #u111575 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:147px;
  2599. top:1423px;
  2600. width:49px;
  2601. height:17px;
  2602. display:flex;
  2603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:12px;
  2607. color:#AAAAAA;
  2608. }
  2609. #u111575 .text {
  2610. position:absolute;
  2611. align-self:flex-start;
  2612. padding:0px 0px 0px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u111575_text {
  2617. border-width:0px;
  2618. white-space:nowrap;
  2619. text-transform:none;
  2620. }
  2621. #u111576_div {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:97px;
  2627. height:22px;
  2628. background:inherit;
  2629. background-color:rgba(255, 255, 255, 0);
  2630. border:none;
  2631. border-radius:0px;
  2632. -moz-box-shadow:none;
  2633. -webkit-box-shadow:none;
  2634. box-shadow:none;
  2635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:16px;
  2639. }
  2640. #u111576 {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:147px;
  2644. top:340px;
  2645. width:97px;
  2646. height:22px;
  2647. display:flex;
  2648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2649. font-weight:400;
  2650. font-style:normal;
  2651. font-size:16px;
  2652. }
  2653. #u111576 .text {
  2654. position:absolute;
  2655. align-self:flex-start;
  2656. padding:0px 0px 0px 0px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u111576_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. }
  2665. #u111577_div {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:97px;
  2671. height:22px;
  2672. background:inherit;
  2673. background-color:rgba(255, 255, 255, 0);
  2674. border:none;
  2675. border-radius:0px;
  2676. -moz-box-shadow:none;
  2677. -webkit-box-shadow:none;
  2678. box-shadow:none;
  2679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. font-size:16px;
  2683. }
  2684. #u111577 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:147px;
  2688. top:424px;
  2689. width:97px;
  2690. height:22px;
  2691. display:flex;
  2692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2693. font-weight:400;
  2694. font-style:normal;
  2695. font-size:16px;
  2696. }
  2697. #u111577 .text {
  2698. position:absolute;
  2699. align-self:flex-start;
  2700. padding:0px 0px 0px 0px;
  2701. box-sizing:border-box;
  2702. width:100%;
  2703. }
  2704. #u111577_text {
  2705. border-width:0px;
  2706. word-wrap:break-word;
  2707. text-transform:none;
  2708. }
  2709. #u111578_div {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:97px;
  2715. height:22px;
  2716. background:inherit;
  2717. background-color:rgba(255, 255, 255, 0);
  2718. border:none;
  2719. border-radius:0px;
  2720. -moz-box-shadow:none;
  2721. -webkit-box-shadow:none;
  2722. box-shadow:none;
  2723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:16px;
  2727. }
  2728. #u111578 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:147px;
  2732. top:1501px;
  2733. width:97px;
  2734. height:22px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:16px;
  2740. }
  2741. #u111578 .text {
  2742. position:absolute;
  2743. align-self:flex-start;
  2744. padding:0px 0px 0px 0px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u111578_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. }
  2753. #u111579_div {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:129px;
  2759. height:22px;
  2760. background:inherit;
  2761. background-color:rgba(255, 255, 255, 0);
  2762. border:none;
  2763. border-radius:0px;
  2764. -moz-box-shadow:none;
  2765. -webkit-box-shadow:none;
  2766. box-shadow:none;
  2767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2768. font-weight:400;
  2769. font-style:normal;
  2770. font-size:16px;
  2771. }
  2772. #u111579 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:147px;
  2776. top:1543px;
  2777. width:129px;
  2778. height:22px;
  2779. display:flex;
  2780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2781. font-weight:400;
  2782. font-style:normal;
  2783. font-size:16px;
  2784. }
  2785. #u111579 .text {
  2786. position:absolute;
  2787. align-self:flex-start;
  2788. padding:0px 0px 0px 0px;
  2789. box-sizing:border-box;
  2790. width:100%;
  2791. }
  2792. #u111579_text {
  2793. border-width:0px;
  2794. white-space:nowrap;
  2795. text-transform:none;
  2796. }
  2797. #u111580_div {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:49px;
  2803. height:17px;
  2804. background:inherit;
  2805. background-color:rgba(255, 255, 255, 0);
  2806. border:none;
  2807. border-radius:0px;
  2808. -moz-box-shadow:none;
  2809. -webkit-box-shadow:none;
  2810. box-shadow:none;
  2811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2812. font-weight:400;
  2813. font-style:normal;
  2814. font-size:12px;
  2815. color:#AAAAAA;
  2816. }
  2817. #u111580 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:147px;
  2821. top:120px;
  2822. width:49px;
  2823. height:17px;
  2824. display:flex;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:12px;
  2829. color:#AAAAAA;
  2830. }
  2831. #u111580 .text {
  2832. position:absolute;
  2833. align-self:flex-start;
  2834. padding:0px 0px 0px 0px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u111580_text {
  2839. border-width:0px;
  2840. white-space:nowrap;
  2841. text-transform:none;
  2842. }
  2843. #u111581_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:97px;
  2849. height:22px;
  2850. background:inherit;
  2851. background-color:rgba(255, 255, 255, 0);
  2852. border:none;
  2853. border-radius:0px;
  2854. -moz-box-shadow:none;
  2855. -webkit-box-shadow:none;
  2856. box-shadow:none;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:16px;
  2861. }
  2862. #u111581 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:147px;
  2866. top:157px;
  2867. width:97px;
  2868. height:22px;
  2869. display:flex;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:16px;
  2874. }
  2875. #u111581 .text {
  2876. position:absolute;
  2877. align-self:flex-start;
  2878. padding:0px 0px 0px 0px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u111581_text {
  2883. border-width:0px;
  2884. word-wrap:break-word;
  2885. text-transform:none;
  2886. }
  2887. #u111582_img {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:201px;
  2893. height:2px;
  2894. }
  2895. #u111582 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:120px;
  2899. top:241px;
  2900. width:200px;
  2901. height:1px;
  2902. display:flex;
  2903. }
  2904. #u111582 .text {
  2905. position:absolute;
  2906. align-self:center;
  2907. padding:2px 2px 2px 2px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u111582_text {
  2912. border-width:0px;
  2913. word-wrap:break-word;
  2914. text-transform:none;
  2915. visibility:hidden;
  2916. }
  2917. #u111583_div {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:49px;
  2923. height:17px;
  2924. background:inherit;
  2925. background-color:rgba(255, 255, 255, 0);
  2926. border:none;
  2927. border-radius:0px;
  2928. -moz-box-shadow:none;
  2929. -webkit-box-shadow:none;
  2930. box-shadow:none;
  2931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. font-size:12px;
  2935. color:#AAAAAA;
  2936. }
  2937. #u111583 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:147px;
  2941. top:261px;
  2942. width:49px;
  2943. height:17px;
  2944. display:flex;
  2945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:12px;
  2949. color:#AAAAAA;
  2950. }
  2951. #u111583 .text {
  2952. position:absolute;
  2953. align-self:flex-start;
  2954. padding:0px 0px 0px 0px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u111583_text {
  2959. border-width:0px;
  2960. white-space:nowrap;
  2961. text-transform:none;
  2962. }
  2963. #u111584_div {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:97px;
  2969. height:22px;
  2970. background:inherit;
  2971. background-color:rgba(255, 255, 255, 0);
  2972. border:none;
  2973. border-radius:0px;
  2974. -moz-box-shadow:none;
  2975. -webkit-box-shadow:none;
  2976. box-shadow:none;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:16px;
  2981. }
  2982. #u111584 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:147px;
  2986. top:298px;
  2987. width:97px;
  2988. height:22px;
  2989. display:flex;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:16px;
  2994. }
  2995. #u111584 .text {
  2996. position:absolute;
  2997. align-self:flex-start;
  2998. padding:0px 0px 0px 0px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u111584_text {
  3003. border-width:0px;
  3004. word-wrap:break-word;
  3005. text-transform:none;
  3006. }
  3007. #u111585_div {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:97px;
  3013. height:22px;
  3014. background:inherit;
  3015. background-color:rgba(255, 255, 255, 0);
  3016. border:none;
  3017. border-radius:0px;
  3018. -moz-box-shadow:none;
  3019. -webkit-box-shadow:none;
  3020. box-shadow:none;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:16px;
  3025. }
  3026. #u111585 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:147px;
  3030. top:199px;
  3031. width:97px;
  3032. height:22px;
  3033. display:flex;
  3034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:16px;
  3038. }
  3039. #u111585 .text {
  3040. position:absolute;
  3041. align-self:flex-start;
  3042. padding:0px 0px 0px 0px;
  3043. box-sizing:border-box;
  3044. width:100%;
  3045. }
  3046. #u111585_text {
  3047. border-width:0px;
  3048. word-wrap:break-word;
  3049. text-transform:none;
  3050. }
  3051. #u111586_div {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:97px;
  3057. height:22px;
  3058. background:inherit;
  3059. background-color:rgba(255, 255, 255, 0);
  3060. border:none;
  3061. border-radius:0px;
  3062. -moz-box-shadow:none;
  3063. -webkit-box-shadow:none;
  3064. box-shadow:none;
  3065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3066. font-weight:400;
  3067. font-style:normal;
  3068. font-size:16px;
  3069. }
  3070. #u111586 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:147px;
  3074. top:382px;
  3075. width:97px;
  3076. height:22px;
  3077. display:flex;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:16px;
  3082. }
  3083. #u111586 .text {
  3084. position:absolute;
  3085. align-self:flex-start;
  3086. padding:0px 0px 0px 0px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u111586_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. }
  3095. #u111587_div {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:97px;
  3101. height:22px;
  3102. background:inherit;
  3103. background-color:rgba(255, 255, 255, 0);
  3104. border:none;
  3105. border-radius:0px;
  3106. -moz-box-shadow:none;
  3107. -webkit-box-shadow:none;
  3108. box-shadow:none;
  3109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:16px;
  3113. }
  3114. #u111587 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:147px;
  3118. top:466px;
  3119. width:97px;
  3120. height:22px;
  3121. display:flex;
  3122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3123. font-weight:400;
  3124. font-style:normal;
  3125. font-size:16px;
  3126. }
  3127. #u111587 .text {
  3128. position:absolute;
  3129. align-self:flex-start;
  3130. padding:0px 0px 0px 0px;
  3131. box-sizing:border-box;
  3132. width:100%;
  3133. }
  3134. #u111587_text {
  3135. border-width:0px;
  3136. word-wrap:break-word;
  3137. text-transform:none;
  3138. }
  3139. #u111588_div {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:97px;
  3145. height:22px;
  3146. background:inherit;
  3147. background-color:rgba(255, 255, 255, 0);
  3148. border:none;
  3149. border-radius:0px;
  3150. -moz-box-shadow:none;
  3151. -webkit-box-shadow:none;
  3152. box-shadow:none;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:16px;
  3157. }
  3158. #u111588 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:147px;
  3162. top:508px;
  3163. width:97px;
  3164. height:22px;
  3165. display:flex;
  3166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. font-size:16px;
  3170. }
  3171. #u111588 .text {
  3172. position:absolute;
  3173. align-self:flex-start;
  3174. padding:0px 0px 0px 0px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u111588_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. }
  3183. #u111589_div {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:97px;
  3189. height:22px;
  3190. background:inherit;
  3191. background-color:rgba(255, 255, 255, 0);
  3192. border:none;
  3193. border-radius:0px;
  3194. -moz-box-shadow:none;
  3195. -webkit-box-shadow:none;
  3196. box-shadow:none;
  3197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:16px;
  3201. }
  3202. #u111589 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:147px;
  3206. top:550px;
  3207. width:97px;
  3208. height:22px;
  3209. display:flex;
  3210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:16px;
  3214. }
  3215. #u111589 .text {
  3216. position:absolute;
  3217. align-self:flex-start;
  3218. padding:0px 0px 0px 0px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u111589_text {
  3223. border-width:0px;
  3224. word-wrap:break-word;
  3225. text-transform:none;
  3226. }
  3227. #u111590_div {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:97px;
  3233. height:22px;
  3234. background:inherit;
  3235. background-color:rgba(255, 255, 255, 0);
  3236. border:none;
  3237. border-radius:0px;
  3238. -moz-box-shadow:none;
  3239. -webkit-box-shadow:none;
  3240. box-shadow:none;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:16px;
  3245. }
  3246. #u111590 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:147px;
  3250. top:592px;
  3251. width:97px;
  3252. height:22px;
  3253. display:flex;
  3254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3255. font-weight:400;
  3256. font-style:normal;
  3257. font-size:16px;
  3258. }
  3259. #u111590 .text {
  3260. position:absolute;
  3261. align-self:flex-start;
  3262. padding:0px 0px 0px 0px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u111590_text {
  3267. border-width:0px;
  3268. word-wrap:break-word;
  3269. text-transform:none;
  3270. }
  3271. #u111591_div {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:97px;
  3277. height:22px;
  3278. background:inherit;
  3279. background-color:rgba(255, 255, 255, 0);
  3280. border:none;
  3281. border-radius:0px;
  3282. -moz-box-shadow:none;
  3283. -webkit-box-shadow:none;
  3284. box-shadow:none;
  3285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:16px;
  3289. }
  3290. #u111591 {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:147px;
  3294. top:634px;
  3295. width:97px;
  3296. height:22px;
  3297. display:flex;
  3298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3299. font-weight:400;
  3300. font-style:normal;
  3301. font-size:16px;
  3302. }
  3303. #u111591 .text {
  3304. position:absolute;
  3305. align-self:flex-start;
  3306. padding:0px 0px 0px 0px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u111591_text {
  3311. border-width:0px;
  3312. word-wrap:break-word;
  3313. text-transform:none;
  3314. }
  3315. #u111592_img {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:201px;
  3321. height:2px;
  3322. }
  3323. #u111592 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:120px;
  3327. top:680px;
  3328. width:200px;
  3329. height:1px;
  3330. display:flex;
  3331. }
  3332. #u111592 .text {
  3333. position:absolute;
  3334. align-self:center;
  3335. padding:2px 2px 2px 2px;
  3336. box-sizing:border-box;
  3337. width:100%;
  3338. }
  3339. #u111592_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. visibility:hidden;
  3344. }
  3345. #u111593_div {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:49px;
  3351. height:17px;
  3352. background:inherit;
  3353. background-color:rgba(255, 255, 255, 0);
  3354. border:none;
  3355. border-radius:0px;
  3356. -moz-box-shadow:none;
  3357. -webkit-box-shadow:none;
  3358. box-shadow:none;
  3359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3360. font-weight:400;
  3361. font-style:normal;
  3362. font-size:12px;
  3363. color:#AAAAAA;
  3364. }
  3365. #u111593 {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:147px;
  3369. top:886px;
  3370. width:49px;
  3371. height:17px;
  3372. display:flex;
  3373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3374. font-weight:400;
  3375. font-style:normal;
  3376. font-size:12px;
  3377. color:#AAAAAA;
  3378. }
  3379. #u111593 .text {
  3380. position:absolute;
  3381. align-self:flex-start;
  3382. padding:0px 0px 0px 0px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u111593_text {
  3387. border-width:0px;
  3388. white-space:nowrap;
  3389. text-transform:none;
  3390. }
  3391. #u111594_div {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:113px;
  3397. height:22px;
  3398. background:inherit;
  3399. background-color:rgba(255, 255, 255, 0);
  3400. border:none;
  3401. border-radius:0px;
  3402. -moz-box-shadow:none;
  3403. -webkit-box-shadow:none;
  3404. box-shadow:none;
  3405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:16px;
  3409. }
  3410. #u111594 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:147px;
  3414. top:923px;
  3415. width:113px;
  3416. height:22px;
  3417. display:flex;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:16px;
  3422. }
  3423. #u111594 .text {
  3424. position:absolute;
  3425. align-self:flex-start;
  3426. padding:0px 0px 0px 0px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u111594_text {
  3431. border-width:0px;
  3432. white-space:nowrap;
  3433. text-transform:none;
  3434. }
  3435. #u111595_div {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:145px;
  3441. height:22px;
  3442. background:inherit;
  3443. background-color:rgba(255, 255, 255, 0);
  3444. border:none;
  3445. border-radius:0px;
  3446. -moz-box-shadow:none;
  3447. -webkit-box-shadow:none;
  3448. box-shadow:none;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:16px;
  3453. }
  3454. #u111595 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:147px;
  3458. top:965px;
  3459. width:145px;
  3460. height:22px;
  3461. display:flex;
  3462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:16px;
  3466. }
  3467. #u111595 .text {
  3468. position:absolute;
  3469. align-self:flex-start;
  3470. padding:0px 0px 0px 0px;
  3471. box-sizing:border-box;
  3472. width:100%;
  3473. }
  3474. #u111595_text {
  3475. border-width:0px;
  3476. white-space:nowrap;
  3477. text-transform:none;
  3478. }
  3479. #u111596_div {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:145px;
  3485. height:22px;
  3486. background:inherit;
  3487. background-color:rgba(255, 255, 255, 0);
  3488. border:none;
  3489. border-radius:0px;
  3490. -moz-box-shadow:none;
  3491. -webkit-box-shadow:none;
  3492. box-shadow:none;
  3493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:16px;
  3497. }
  3498. #u111596 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:147px;
  3502. top:1007px;
  3503. width:145px;
  3504. height:22px;
  3505. display:flex;
  3506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:16px;
  3510. }
  3511. #u111596 .text {
  3512. position:absolute;
  3513. align-self:flex-start;
  3514. padding:0px 0px 0px 0px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u111596_text {
  3519. border-width:0px;
  3520. white-space:nowrap;
  3521. text-transform:none;
  3522. }
  3523. #u111597_div {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:145px;
  3529. height:22px;
  3530. background:inherit;
  3531. background-color:rgba(255, 255, 255, 0);
  3532. border:none;
  3533. border-radius:0px;
  3534. -moz-box-shadow:none;
  3535. -webkit-box-shadow:none;
  3536. box-shadow:none;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:16px;
  3541. }
  3542. #u111597 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:147px;
  3546. top:1049px;
  3547. width:145px;
  3548. height:22px;
  3549. display:flex;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:16px;
  3554. }
  3555. #u111597 .text {
  3556. position:absolute;
  3557. align-self:flex-start;
  3558. padding:0px 0px 0px 0px;
  3559. box-sizing:border-box;
  3560. width:100%;
  3561. }
  3562. #u111597_text {
  3563. border-width:0px;
  3564. white-space:nowrap;
  3565. text-transform:none;
  3566. }
  3567. #u111598_div {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:145px;
  3573. height:22px;
  3574. background:inherit;
  3575. background-color:rgba(255, 255, 255, 0);
  3576. border:none;
  3577. border-radius:0px;
  3578. -moz-box-shadow:none;
  3579. -webkit-box-shadow:none;
  3580. box-shadow:none;
  3581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3582. font-weight:400;
  3583. font-style:normal;
  3584. font-size:16px;
  3585. }
  3586. #u111598 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:147px;
  3590. top:1091px;
  3591. width:145px;
  3592. height:22px;
  3593. display:flex;
  3594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:16px;
  3598. }
  3599. #u111598 .text {
  3600. position:absolute;
  3601. align-self:flex-start;
  3602. padding:0px 0px 0px 0px;
  3603. box-sizing:border-box;
  3604. width:100%;
  3605. }
  3606. #u111598_text {
  3607. border-width:0px;
  3608. white-space:nowrap;
  3609. text-transform:none;
  3610. }
  3611. #u111599_div {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:113px;
  3617. height:22px;
  3618. background:inherit;
  3619. background-color:rgba(255, 255, 255, 0);
  3620. border:none;
  3621. border-radius:0px;
  3622. -moz-box-shadow:none;
  3623. -webkit-box-shadow:none;
  3624. box-shadow:none;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:16px;
  3629. }
  3630. #u111599 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:147px;
  3634. top:1133px;
  3635. width:113px;
  3636. height:22px;
  3637. display:flex;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:16px;
  3642. }
  3643. #u111599 .text {
  3644. position:absolute;
  3645. align-self:flex-start;
  3646. padding:0px 0px 0px 0px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u111599_text {
  3651. border-width:0px;
  3652. white-space:nowrap;
  3653. text-transform:none;
  3654. }
  3655. #u111600_div {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:97px;
  3661. height:22px;
  3662. background:inherit;
  3663. background-color:rgba(255, 255, 255, 0);
  3664. border:none;
  3665. border-radius:0px;
  3666. -moz-box-shadow:none;
  3667. -webkit-box-shadow:none;
  3668. box-shadow:none;
  3669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:16px;
  3673. }
  3674. #u111600 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:147px;
  3678. top:1585px;
  3679. width:97px;
  3680. height:22px;
  3681. display:flex;
  3682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:16px;
  3686. }
  3687. #u111600 .text {
  3688. position:absolute;
  3689. align-self:flex-start;
  3690. padding:0px 0px 0px 0px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u111600_text {
  3695. border-width:0px;
  3696. white-space:nowrap;
  3697. text-transform:none;
  3698. }
  3699. #u111601_div {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:97px;
  3705. height:22px;
  3706. background:inherit;
  3707. background-color:rgba(255, 255, 255, 0);
  3708. border:none;
  3709. border-radius:0px;
  3710. -moz-box-shadow:none;
  3711. -webkit-box-shadow:none;
  3712. box-shadow:none;
  3713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:16px;
  3717. }
  3718. #u111601 {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:147px;
  3722. top:1627px;
  3723. width:97px;
  3724. height:22px;
  3725. display:flex;
  3726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3727. font-weight:400;
  3728. font-style:normal;
  3729. font-size:16px;
  3730. }
  3731. #u111601 .text {
  3732. position:absolute;
  3733. align-self:flex-start;
  3734. padding:0px 0px 0px 0px;
  3735. box-sizing:border-box;
  3736. width:100%;
  3737. }
  3738. #u111601_text {
  3739. border-width:0px;
  3740. white-space:nowrap;
  3741. text-transform:none;
  3742. }
  3743. #u111602_div {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:0px;
  3748. width:97px;
  3749. height:22px;
  3750. background:inherit;
  3751. background-color:rgba(255, 255, 255, 0);
  3752. border:none;
  3753. border-radius:0px;
  3754. -moz-box-shadow:none;
  3755. -webkit-box-shadow:none;
  3756. box-shadow:none;
  3757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3758. font-weight:400;
  3759. font-style:normal;
  3760. font-size:16px;
  3761. }
  3762. #u111602 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:147px;
  3766. top:1669px;
  3767. width:97px;
  3768. height:22px;
  3769. display:flex;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:16px;
  3774. }
  3775. #u111602 .text {
  3776. position:absolute;
  3777. align-self:flex-start;
  3778. padding:0px 0px 0px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u111602_text {
  3783. border-width:0px;
  3784. white-space:nowrap;
  3785. text-transform:none;
  3786. }
  3787. #u111603_div {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:97px;
  3793. height:22px;
  3794. background:inherit;
  3795. background-color:rgba(255, 255, 255, 0);
  3796. border:none;
  3797. border-radius:0px;
  3798. -moz-box-shadow:none;
  3799. -webkit-box-shadow:none;
  3800. box-shadow:none;
  3801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3802. font-weight:400;
  3803. font-style:normal;
  3804. font-size:16px;
  3805. }
  3806. #u111603 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:147px;
  3810. top:1711px;
  3811. width:97px;
  3812. height:22px;
  3813. display:flex;
  3814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3815. font-weight:400;
  3816. font-style:normal;
  3817. font-size:16px;
  3818. }
  3819. #u111603 .text {
  3820. position:absolute;
  3821. align-self:flex-start;
  3822. padding:0px 0px 0px 0px;
  3823. box-sizing:border-box;
  3824. width:100%;
  3825. }
  3826. #u111603_text {
  3827. border-width:0px;
  3828. white-space:nowrap;
  3829. text-transform:none;
  3830. }
  3831. #u111604_div {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:97px;
  3837. height:22px;
  3838. background:inherit;
  3839. background-color:rgba(255, 255, 255, 0);
  3840. border:none;
  3841. border-radius:0px;
  3842. -moz-box-shadow:none;
  3843. -webkit-box-shadow:none;
  3844. box-shadow:none;
  3845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:16px;
  3849. }
  3850. #u111604 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:147px;
  3854. top:824px;
  3855. width:97px;
  3856. height:22px;
  3857. display:flex;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:16px;
  3862. }
  3863. #u111604 .text {
  3864. position:absolute;
  3865. align-self:flex-start;
  3866. padding:0px 0px 0px 0px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u111604_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. }
  3875. #u111605_div {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:97px;
  3881. height:22px;
  3882. background:inherit;
  3883. background-color:rgba(255, 255, 255, 0);
  3884. border:none;
  3885. border-radius:0px;
  3886. -moz-box-shadow:none;
  3887. -webkit-box-shadow:none;
  3888. box-shadow:none;
  3889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:16px;
  3893. }
  3894. #u111605 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:147px;
  3898. top:738px;
  3899. width:97px;
  3900. height:22px;
  3901. display:flex;
  3902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:16px;
  3906. }
  3907. #u111605 .text {
  3908. position:absolute;
  3909. align-self:flex-start;
  3910. padding:0px 0px 0px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u111605_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. }
  3919. #u111606_div {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:49px;
  3925. height:17px;
  3926. background:inherit;
  3927. background-color:rgba(255, 255, 255, 0);
  3928. border:none;
  3929. border-radius:0px;
  3930. -moz-box-shadow:none;
  3931. -webkit-box-shadow:none;
  3932. box-shadow:none;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:12px;
  3937. color:#AAAAAA;
  3938. }
  3939. #u111606 {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:147px;
  3943. top:701px;
  3944. width:49px;
  3945. height:17px;
  3946. display:flex;
  3947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3948. font-weight:400;
  3949. font-style:normal;
  3950. font-size:12px;
  3951. color:#AAAAAA;
  3952. }
  3953. #u111606 .text {
  3954. position:absolute;
  3955. align-self:flex-start;
  3956. padding:0px 0px 0px 0px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u111606_text {
  3961. border-width:0px;
  3962. white-space:nowrap;
  3963. text-transform:none;
  3964. }
  3965. #u111607_div {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:97px;
  3971. height:22px;
  3972. background:inherit;
  3973. background-color:rgba(255, 255, 255, 0);
  3974. border:none;
  3975. border-radius:0px;
  3976. -moz-box-shadow:none;
  3977. -webkit-box-shadow:none;
  3978. box-shadow:none;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:16px;
  3983. }
  3984. #u111607 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:147px;
  3988. top:780px;
  3989. width:97px;
  3990. height:22px;
  3991. display:flex;
  3992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. font-size:16px;
  3996. }
  3997. #u111607 .text {
  3998. position:absolute;
  3999. align-self:flex-start;
  4000. padding:0px 0px 0px 0px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u111607_text {
  4005. border-width:0px;
  4006. word-wrap:break-word;
  4007. text-transform:none;
  4008. }
  4009. #u111608_img {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:201px;
  4015. height:2px;
  4016. }
  4017. #u111608 {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:120px;
  4021. top:866px;
  4022. width:200px;
  4023. height:1px;
  4024. display:flex;
  4025. }
  4026. #u111608 .text {
  4027. position:absolute;
  4028. align-self:center;
  4029. padding:2px 2px 2px 2px;
  4030. box-sizing:border-box;
  4031. width:100%;
  4032. }
  4033. #u111608_text {
  4034. border-width:0px;
  4035. word-wrap:break-word;
  4036. text-transform:none;
  4037. visibility:hidden;
  4038. }
  4039. #u111609_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:97px;
  4045. height:22px;
  4046. background:inherit;
  4047. background-color:rgba(255, 255, 255, 0);
  4048. border:none;
  4049. border-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:16px;
  4057. }
  4058. #u111609 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:147px;
  4062. top:1237px;
  4063. width:97px;
  4064. height:22px;
  4065. display:flex;
  4066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4067. font-weight:400;
  4068. font-style:normal;
  4069. font-size:16px;
  4070. }
  4071. #u111609 .text {
  4072. position:absolute;
  4073. align-self:flex-start;
  4074. padding:0px 0px 0px 0px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u111609_text {
  4079. border-width:0px;
  4080. word-wrap:break-word;
  4081. text-transform:none;
  4082. }
  4083. #u111610_div {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:49px;
  4089. height:17px;
  4090. background:inherit;
  4091. background-color:rgba(255, 255, 255, 0);
  4092. border:none;
  4093. border-radius:0px;
  4094. -moz-box-shadow:none;
  4095. -webkit-box-shadow:none;
  4096. box-shadow:none;
  4097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:12px;
  4101. color:#AAAAAA;
  4102. }
  4103. #u111610 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:147px;
  4107. top:1201px;
  4108. width:49px;
  4109. height:17px;
  4110. display:flex;
  4111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4112. font-weight:400;
  4113. font-style:normal;
  4114. font-size:12px;
  4115. color:#AAAAAA;
  4116. }
  4117. #u111610 .text {
  4118. position:absolute;
  4119. align-self:flex-start;
  4120. padding:0px 0px 0px 0px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u111610_text {
  4125. border-width:0px;
  4126. white-space:nowrap;
  4127. text-transform:none;
  4128. }
  4129. #u111611_div {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:97px;
  4135. height:22px;
  4136. background:inherit;
  4137. background-color:rgba(255, 255, 255, 0);
  4138. border:none;
  4139. border-radius:0px;
  4140. -moz-box-shadow:none;
  4141. -webkit-box-shadow:none;
  4142. box-shadow:none;
  4143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4144. font-weight:400;
  4145. font-style:normal;
  4146. font-size:16px;
  4147. }
  4148. #u111611 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:147px;
  4152. top:1279px;
  4153. width:97px;
  4154. height:22px;
  4155. display:flex;
  4156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4157. font-weight:400;
  4158. font-style:normal;
  4159. font-size:16px;
  4160. }
  4161. #u111611 .text {
  4162. position:absolute;
  4163. align-self:flex-start;
  4164. padding:0px 0px 0px 0px;
  4165. box-sizing:border-box;
  4166. width:100%;
  4167. }
  4168. #u111611_text {
  4169. border-width:0px;
  4170. word-wrap:break-word;
  4171. text-transform:none;
  4172. }
  4173. #u111612_div {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:0px;
  4177. top:0px;
  4178. width:97px;
  4179. height:22px;
  4180. background:inherit;
  4181. background-color:rgba(255, 255, 255, 0);
  4182. border:none;
  4183. border-radius:0px;
  4184. -moz-box-shadow:none;
  4185. -webkit-box-shadow:none;
  4186. box-shadow:none;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:16px;
  4191. }
  4192. #u111612 {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:147px;
  4196. top:1321px;
  4197. width:97px;
  4198. height:22px;
  4199. display:flex;
  4200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4201. font-weight:400;
  4202. font-style:normal;
  4203. font-size:16px;
  4204. }
  4205. #u111612 .text {
  4206. position:absolute;
  4207. align-self:flex-start;
  4208. padding:0px 0px 0px 0px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u111612_text {
  4213. border-width:0px;
  4214. word-wrap:break-word;
  4215. text-transform:none;
  4216. }
  4217. #u111613_div {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:97px;
  4223. height:22px;
  4224. background:inherit;
  4225. background-color:rgba(255, 255, 255, 0);
  4226. border:none;
  4227. border-radius:0px;
  4228. -moz-box-shadow:none;
  4229. -webkit-box-shadow:none;
  4230. box-shadow:none;
  4231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4232. font-weight:400;
  4233. font-style:normal;
  4234. font-size:16px;
  4235. }
  4236. #u111613 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:147px;
  4240. top:1363px;
  4241. width:97px;
  4242. height:22px;
  4243. display:flex;
  4244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4245. font-weight:400;
  4246. font-style:normal;
  4247. font-size:16px;
  4248. }
  4249. #u111613 .text {
  4250. position:absolute;
  4251. align-self:flex-start;
  4252. padding:0px 0px 0px 0px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u111613_text {
  4257. border-width:0px;
  4258. word-wrap:break-word;
  4259. text-transform:none;
  4260. }
  4261. #u111614_img {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:0px;
  4266. width:201px;
  4267. height:2px;
  4268. }
  4269. #u111614 {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:120px;
  4273. top:1403px;
  4274. width:200px;
  4275. height:1px;
  4276. display:flex;
  4277. }
  4278. #u111614 .text {
  4279. position:absolute;
  4280. align-self:center;
  4281. padding:2px 2px 2px 2px;
  4282. box-sizing:border-box;
  4283. width:100%;
  4284. }
  4285. #u111614_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. visibility:hidden;
  4290. }