styles.css 83 KB

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