styles.css 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:3659px;
  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. #u904 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:753px;
  25. height:1354px;
  26. }
  27. #u904_state0 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:753px;
  33. height:1354px;
  34. -ms-overflow-x:hidden;
  35. overflow-x:hidden;
  36. -ms-overflow-y:hidden;
  37. overflow-y:hidden;
  38. background-image:none;
  39. border:none;
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. }
  45. #u904_state0_content {
  46. border-width:0px;
  47. position:absolute;
  48. left:0px;
  49. top:0px;
  50. width:1px;
  51. height:1px;
  52. }
  53. #u905_div {
  54. border-width:0px;
  55. position:absolute;
  56. left:0px;
  57. top:0px;
  58. width:750px;
  59. height:1201px;
  60. background:inherit;
  61. background-color:rgba(255, 255, 255, 0.4980392156862745);
  62. border:none;
  63. border-radius:0px;
  64. -moz-box-shadow:none;
  65. -webkit-box-shadow:none;
  66. box-shadow:none;
  67. }
  68. #u905 {
  69. border-width:0px;
  70. position:absolute;
  71. left:0px;
  72. top:0px;
  73. width:750px;
  74. height:1201px;
  75. display:flex;
  76. }
  77. #u905 .text {
  78. position:absolute;
  79. align-self:center;
  80. padding:2px 2px 2px 20px;
  81. box-sizing:border-box;
  82. width:100%;
  83. }
  84. #u905_text {
  85. border-width:0px;
  86. word-wrap:break-word;
  87. text-transform:none;
  88. visibility:hidden;
  89. }
  90. #u906_div {
  91. border-width:0px;
  92. position:absolute;
  93. left:0px;
  94. top:0px;
  95. width:750px;
  96. height:1125px;
  97. background:inherit;
  98. background-color:rgba(215, 215, 215, 1);
  99. border:none;
  100. border-radius:24px;
  101. border-bottom-right-radius:0px;
  102. border-bottom-left-radius:0px;
  103. -moz-box-shadow:none;
  104. -webkit-box-shadow:none;
  105. box-shadow:none;
  106. }
  107. #u906 {
  108. border-width:0px;
  109. position:absolute;
  110. left:0px;
  111. top:209px;
  112. width:750px;
  113. height:1125px;
  114. display:flex;
  115. }
  116. #u906 .text {
  117. position:absolute;
  118. align-self:center;
  119. padding:2px 2px 2px 20px;
  120. box-sizing:border-box;
  121. width:100%;
  122. }
  123. #u906_text {
  124. border-width:0px;
  125. word-wrap:break-word;
  126. text-transform:none;
  127. visibility:hidden;
  128. }
  129. #u907_div {
  130. border-width:0px;
  131. position:absolute;
  132. left:0px;
  133. top:0px;
  134. width:128px;
  135. height:49px;
  136. background:inherit;
  137. background-color:rgba(255, 255, 255, 0);
  138. border:none;
  139. border-radius:0px;
  140. -moz-box-shadow:none;
  141. -webkit-box-shadow:none;
  142. box-shadow:none;
  143. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  144. font-weight:500;
  145. font-style:normal;
  146. font-size:32px;
  147. color:rgba(0, 0, 0, 0.8745098039215686);
  148. text-align:left;
  149. }
  150. #u907 {
  151. border-width:0px;
  152. position:absolute;
  153. left:30px;
  154. top:241px;
  155. width:128px;
  156. height:49px;
  157. display:flex;
  158. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  159. font-weight:500;
  160. font-style:normal;
  161. font-size:32px;
  162. color:rgba(0, 0, 0, 0.8745098039215686);
  163. text-align:left;
  164. }
  165. #u907 .text {
  166. position:absolute;
  167. align-self:flex-start;
  168. padding:0px 0px 0px 0px;
  169. box-sizing:border-box;
  170. width:100%;
  171. }
  172. #u907_text {
  173. border-width:0px;
  174. white-space:nowrap;
  175. text-transform:none;
  176. }
  177. #u908 {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:0px;
  183. height:0px;
  184. }
  185. #u909_div {
  186. border-width:0px;
  187. position:absolute;
  188. left:0px;
  189. top:0px;
  190. width:718px;
  191. height:166px;
  192. background:inherit;
  193. background-color:rgba(255, 255, 255, 1);
  194. border:none;
  195. border-radius:16px;
  196. -moz-box-shadow:none;
  197. -webkit-box-shadow:none;
  198. box-shadow:none;
  199. }
  200. #u909 {
  201. border-width:0px;
  202. position:absolute;
  203. left:16px;
  204. top:320px;
  205. width:718px;
  206. height:166px;
  207. display:flex;
  208. }
  209. #u909 .text {
  210. position:absolute;
  211. align-self:center;
  212. padding:2px 2px 2px 20px;
  213. box-sizing:border-box;
  214. width:100%;
  215. }
  216. #u909_text {
  217. border-width:0px;
  218. word-wrap:break-word;
  219. text-transform:none;
  220. visibility:hidden;
  221. }
  222. #u910_div {
  223. border-width:0px;
  224. position:absolute;
  225. left:0px;
  226. top:0px;
  227. width:200px;
  228. height:30px;
  229. background:inherit;
  230. background-color:rgba(255, 255, 255, 0);
  231. border:none;
  232. border-radius:0px;
  233. -moz-box-shadow:none;
  234. -webkit-box-shadow:none;
  235. box-shadow:none;
  236. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  237. font-weight:400;
  238. font-style:normal;
  239. font-size:28px;
  240. color:rgba(0, 0, 0, 0.8745098039215686);
  241. text-align:left;
  242. line-height:30px;
  243. }
  244. #u910 {
  245. border-width:0px;
  246. position:absolute;
  247. left:206px;
  248. top:381px;
  249. width:200px;
  250. height:30px;
  251. display:flex;
  252. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  253. font-weight:400;
  254. font-style:normal;
  255. font-size:28px;
  256. color:rgba(0, 0, 0, 0.8745098039215686);
  257. text-align:left;
  258. line-height:30px;
  259. }
  260. #u910 .text {
  261. position:absolute;
  262. align-self:flex-start;
  263. padding:0px 0px 0px 0px;
  264. box-sizing:border-box;
  265. width:100%;
  266. }
  267. #u910_text {
  268. border-width:0px;
  269. word-wrap:break-word;
  270. text-transform:none;
  271. }
  272. #u911_div {
  273. border-width:0px;
  274. position:absolute;
  275. left:0px;
  276. top:0px;
  277. width:122px;
  278. height:64px;
  279. background:inherit;
  280. background-color:rgba(0, 0, 0, 0.050980392156862744);
  281. border:none;
  282. border-radius:200px;
  283. -moz-box-shadow:none;
  284. -webkit-box-shadow:none;
  285. box-shadow:none;
  286. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  287. font-weight:500;
  288. font-style:normal;
  289. font-size:24px;
  290. color:#7F7F7F;
  291. }
  292. #u911 {
  293. border-width:0px;
  294. position:absolute;
  295. left:588px;
  296. top:371px;
  297. width:122px;
  298. height:64px;
  299. display:flex;
  300. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  301. font-weight:500;
  302. font-style:normal;
  303. font-size:24px;
  304. color:#7F7F7F;
  305. }
  306. #u911 .text {
  307. position:absolute;
  308. align-self:center;
  309. padding:2px 2px 2px 20px;
  310. box-sizing:border-box;
  311. width:100%;
  312. }
  313. #u911_text {
  314. border-width:0px;
  315. word-wrap:break-word;
  316. text-transform:none;
  317. }
  318. #u912_img {
  319. border-width:0px;
  320. position:absolute;
  321. left:0px;
  322. top:0px;
  323. width:123px;
  324. height:117px;
  325. }
  326. #u912 {
  327. border-width:0px;
  328. position:absolute;
  329. left:45px;
  330. top:337px;
  331. width:123px;
  332. height:117px;
  333. display:flex;
  334. }
  335. #u912 .text {
  336. position:absolute;
  337. align-self:center;
  338. padding:2px 2px 2px 2px;
  339. box-sizing:border-box;
  340. width:100%;
  341. }
  342. #u912_text {
  343. border-width:0px;
  344. word-wrap:break-word;
  345. text-transform:none;
  346. visibility:hidden;
  347. }
  348. #u913_div {
  349. border-width:0px;
  350. position:absolute;
  351. left:0px;
  352. top:0px;
  353. width:718px;
  354. height:798px;
  355. background:inherit;
  356. background-color:rgba(255, 255, 255, 1);
  357. border:none;
  358. border-radius:16px;
  359. -moz-box-shadow:none;
  360. -webkit-box-shadow:none;
  361. box-shadow:none;
  362. }
  363. #u913 {
  364. border-width:0px;
  365. position:absolute;
  366. left:16px;
  367. top:701px;
  368. width:718px;
  369. height:798px;
  370. display:flex;
  371. }
  372. #u913 .text {
  373. position:absolute;
  374. align-self:center;
  375. padding:2px 2px 2px 20px;
  376. box-sizing:border-box;
  377. width:100%;
  378. }
  379. #u913_text {
  380. border-width:0px;
  381. word-wrap:break-word;
  382. text-transform:none;
  383. visibility:hidden;
  384. }
  385. #u914_div {
  386. border-width:0px;
  387. position:absolute;
  388. left:0px;
  389. top:0px;
  390. width:670px;
  391. height:800px;
  392. background:inherit;
  393. background-color:rgba(255, 255, 255, 0);
  394. border:none;
  395. border-radius:0px;
  396. -moz-box-shadow:none;
  397. -webkit-box-shadow:none;
  398. box-shadow:none;
  399. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  400. font-weight:400;
  401. font-style:normal;
  402. font-size:24px;
  403. color:rgba(0, 0, 0, 0.592156862745098);
  404. line-height:40px;
  405. }
  406. #u914 {
  407. border-width:0px;
  408. position:absolute;
  409. left:40px;
  410. top:778px;
  411. width:670px;
  412. height:800px;
  413. display:flex;
  414. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  415. font-weight:400;
  416. font-style:normal;
  417. font-size:24px;
  418. color:rgba(0, 0, 0, 0.592156862745098);
  419. line-height:40px;
  420. }
  421. #u914 .text {
  422. position:absolute;
  423. align-self:flex-start;
  424. padding:0px 0px 0px 0px;
  425. box-sizing:border-box;
  426. width:100%;
  427. }
  428. #u914_text {
  429. border-width:0px;
  430. word-wrap:break-word;
  431. text-transform:none;
  432. }
  433. #u915_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:104px;
  439. height:35px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  448. font-weight:500;
  449. font-style:normal;
  450. font-size:26px;
  451. color:rgba(0, 0, 0, 0.8745098039215686);
  452. }
  453. #u915 {
  454. border-width:0px;
  455. position:absolute;
  456. left:40px;
  457. top:725px;
  458. width:104px;
  459. height:35px;
  460. display:flex;
  461. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  462. font-weight:500;
  463. font-style:normal;
  464. font-size:26px;
  465. color:rgba(0, 0, 0, 0.8745098039215686);
  466. }
  467. #u915 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u915_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u916 {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:0px;
  485. height:0px;
  486. }
  487. #u917_div {
  488. border-width:0px;
  489. position:absolute;
  490. left:0px;
  491. top:0px;
  492. width:718px;
  493. height:166px;
  494. background:inherit;
  495. background-color:rgba(255, 255, 255, 1);
  496. border:none;
  497. border-radius:16px;
  498. -moz-box-shadow:none;
  499. -webkit-box-shadow:none;
  500. box-shadow:none;
  501. }
  502. #u917 {
  503. border-width:0px;
  504. position:absolute;
  505. left:16px;
  506. top:505px;
  507. width:718px;
  508. height:166px;
  509. display:flex;
  510. }
  511. #u917 .text {
  512. position:absolute;
  513. align-self:center;
  514. padding:2px 2px 2px 20px;
  515. box-sizing:border-box;
  516. width:100%;
  517. }
  518. #u917_text {
  519. border-width:0px;
  520. word-wrap:break-word;
  521. text-transform:none;
  522. visibility:hidden;
  523. }
  524. #u918_div {
  525. border-width:0px;
  526. position:absolute;
  527. left:0px;
  528. top:0px;
  529. width:200px;
  530. height:30px;
  531. background:inherit;
  532. background-color:rgba(255, 255, 255, 0);
  533. border:none;
  534. border-radius:0px;
  535. -moz-box-shadow:none;
  536. -webkit-box-shadow:none;
  537. box-shadow:none;
  538. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  539. font-weight:400;
  540. font-style:normal;
  541. font-size:28px;
  542. color:rgba(0, 0, 0, 0.8745098039215686);
  543. text-align:left;
  544. line-height:30px;
  545. }
  546. #u918 {
  547. border-width:0px;
  548. position:absolute;
  549. left:206px;
  550. top:566px;
  551. width:200px;
  552. height:30px;
  553. display:flex;
  554. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  555. font-weight:400;
  556. font-style:normal;
  557. font-size:28px;
  558. color:rgba(0, 0, 0, 0.8745098039215686);
  559. text-align:left;
  560. line-height:30px;
  561. }
  562. #u918 .text {
  563. position:absolute;
  564. align-self:flex-start;
  565. padding:0px 0px 0px 0px;
  566. box-sizing:border-box;
  567. width:100%;
  568. }
  569. #u918_text {
  570. border-width:0px;
  571. word-wrap:break-word;
  572. text-transform:none;
  573. }
  574. #u919_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:122px;
  580. height:64px;
  581. background:inherit;
  582. background-color:rgba(0, 0, 0, 0.050980392156862744);
  583. border:none;
  584. border-radius:200px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  589. font-weight:500;
  590. font-style:normal;
  591. font-size:24px;
  592. }
  593. #u919 {
  594. border-width:0px;
  595. position:absolute;
  596. left:588px;
  597. top:556px;
  598. width:122px;
  599. height:64px;
  600. display:flex;
  601. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  602. font-weight:500;
  603. font-style:normal;
  604. font-size:24px;
  605. }
  606. #u919 .text {
  607. position:absolute;
  608. align-self:center;
  609. padding:2px 2px 2px 20px;
  610. box-sizing:border-box;
  611. width:100%;
  612. }
  613. #u919_text {
  614. border-width:0px;
  615. word-wrap:break-word;
  616. text-transform:none;
  617. }
  618. #u920_img {
  619. border-width:0px;
  620. position:absolute;
  621. left:0px;
  622. top:0px;
  623. width:123px;
  624. height:117px;
  625. }
  626. #u920 {
  627. border-width:0px;
  628. position:absolute;
  629. left:45px;
  630. top:522px;
  631. width:123px;
  632. height:117px;
  633. display:flex;
  634. }
  635. #u920 .text {
  636. position:absolute;
  637. align-self:center;
  638. padding:2px 2px 2px 2px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u920_text {
  643. border-width:0px;
  644. word-wrap:break-word;
  645. text-transform:none;
  646. visibility:hidden;
  647. }
  648. #u921_div {
  649. border-width:0px;
  650. position:absolute;
  651. left:0px;
  652. top:0px;
  653. width:1px;
  654. height:40px;
  655. background:inherit;
  656. background-color:rgba(255, 255, 255, 0);
  657. border:none;
  658. border-radius:0px;
  659. -moz-box-shadow:none;
  660. -webkit-box-shadow:none;
  661. box-shadow:none;
  662. font-size:24px;
  663. }
  664. #u921 {
  665. border-width:0px;
  666. position:absolute;
  667. left:206px;
  668. top:594px;
  669. width:1px;
  670. height:40px;
  671. display:flex;
  672. opacity:0.5;
  673. font-size:24px;
  674. }
  675. #u921 .text {
  676. position:absolute;
  677. align-self:flex-start;
  678. padding:0px 0px 0px 0px;
  679. box-sizing:border-box;
  680. width:100%;
  681. }
  682. #u921_text {
  683. border-width:0px;
  684. white-space:nowrap;
  685. text-transform:none;
  686. visibility:hidden;
  687. }
  688. #u922 {
  689. border-width:0px;
  690. position:absolute;
  691. left:822px;
  692. top:0px;
  693. width:750px;
  694. height:1354px;
  695. }
  696. #u922_state0 {
  697. border-width:0px;
  698. position:absolute;
  699. left:0px;
  700. top:0px;
  701. width:750px;
  702. height:1354px;
  703. -ms-overflow-x:hidden;
  704. overflow-x:hidden;
  705. -ms-overflow-y:hidden;
  706. overflow-y:hidden;
  707. background-image:none;
  708. border:none;
  709. border-radius:0px;
  710. -moz-box-shadow:none;
  711. -webkit-box-shadow:none;
  712. box-shadow:none;
  713. }
  714. #u922_state0_content {
  715. border-width:0px;
  716. position:absolute;
  717. left:0px;
  718. top:0px;
  719. width:1px;
  720. height:1px;
  721. }
  722. #u923_div {
  723. border-width:0px;
  724. position:absolute;
  725. left:0px;
  726. top:0px;
  727. width:750px;
  728. height:1125px;
  729. background:inherit;
  730. background-color:rgba(215, 215, 215, 1);
  731. border:none;
  732. border-radius:24px;
  733. border-bottom-right-radius:0px;
  734. border-bottom-left-radius:0px;
  735. -moz-box-shadow:none;
  736. -webkit-box-shadow:none;
  737. box-shadow:none;
  738. }
  739. #u923 {
  740. border-width:0px;
  741. position:absolute;
  742. left:0px;
  743. top:209px;
  744. width:750px;
  745. height:1125px;
  746. display:flex;
  747. }
  748. #u923 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 20px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u923_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u924_div {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:128px;
  767. height:49px;
  768. background:inherit;
  769. background-color:rgba(255, 255, 255, 0);
  770. border:none;
  771. border-radius:0px;
  772. -moz-box-shadow:none;
  773. -webkit-box-shadow:none;
  774. box-shadow:none;
  775. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  776. font-weight:500;
  777. font-style:normal;
  778. font-size:32px;
  779. color:rgba(0, 0, 0, 0.8745098039215686);
  780. text-align:left;
  781. }
  782. #u924 {
  783. border-width:0px;
  784. position:absolute;
  785. left:30px;
  786. top:241px;
  787. width:128px;
  788. height:49px;
  789. display:flex;
  790. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  791. font-weight:500;
  792. font-style:normal;
  793. font-size:32px;
  794. color:rgba(0, 0, 0, 0.8745098039215686);
  795. text-align:left;
  796. }
  797. #u924 .text {
  798. position:absolute;
  799. align-self:flex-start;
  800. padding:0px 0px 0px 0px;
  801. box-sizing:border-box;
  802. width:100%;
  803. }
  804. #u924_text {
  805. border-width:0px;
  806. white-space:nowrap;
  807. text-transform:none;
  808. }
  809. #u925 {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:0px;
  815. height:0px;
  816. }
  817. #u926_div {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:718px;
  823. height:166px;
  824. background:inherit;
  825. background-color:rgba(255, 255, 255, 1);
  826. border:none;
  827. border-radius:16px;
  828. -moz-box-shadow:none;
  829. -webkit-box-shadow:none;
  830. box-shadow:none;
  831. }
  832. #u926 {
  833. border-width:0px;
  834. position:absolute;
  835. left:16px;
  836. top:320px;
  837. width:718px;
  838. height:166px;
  839. display:flex;
  840. }
  841. #u926 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 20px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u926_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u927_div {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:200px;
  860. height:30px;
  861. background:inherit;
  862. background-color:rgba(255, 255, 255, 0);
  863. border:none;
  864. border-radius:0px;
  865. -moz-box-shadow:none;
  866. -webkit-box-shadow:none;
  867. box-shadow:none;
  868. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  869. font-weight:400;
  870. font-style:normal;
  871. font-size:28px;
  872. color:rgba(0, 0, 0, 0.8745098039215686);
  873. text-align:left;
  874. line-height:30px;
  875. }
  876. #u927 {
  877. border-width:0px;
  878. position:absolute;
  879. left:206px;
  880. top:381px;
  881. width:200px;
  882. height:30px;
  883. display:flex;
  884. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  885. font-weight:400;
  886. font-style:normal;
  887. font-size:28px;
  888. color:rgba(0, 0, 0, 0.8745098039215686);
  889. text-align:left;
  890. line-height:30px;
  891. }
  892. #u927 .text {
  893. position:absolute;
  894. align-self:flex-start;
  895. padding:0px 0px 0px 0px;
  896. box-sizing:border-box;
  897. width:100%;
  898. }
  899. #u927_text {
  900. border-width:0px;
  901. word-wrap:break-word;
  902. text-transform:none;
  903. }
  904. #u928_div {
  905. border-width:0px;
  906. position:absolute;
  907. left:0px;
  908. top:0px;
  909. width:122px;
  910. height:64px;
  911. background:inherit;
  912. background-color:rgba(0, 0, 0, 0.050980392156862744);
  913. border:none;
  914. border-radius:200px;
  915. -moz-box-shadow:none;
  916. -webkit-box-shadow:none;
  917. box-shadow:none;
  918. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  919. font-weight:500;
  920. font-style:normal;
  921. font-size:24px;
  922. }
  923. #u928 {
  924. border-width:0px;
  925. position:absolute;
  926. left:588px;
  927. top:371px;
  928. width:122px;
  929. height:64px;
  930. display:flex;
  931. opacity:0.5;
  932. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  933. font-weight:500;
  934. font-style:normal;
  935. font-size:24px;
  936. }
  937. #u928 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 20px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u928_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. }
  949. #u929_img {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:123px;
  955. height:117px;
  956. }
  957. #u929 {
  958. border-width:0px;
  959. position:absolute;
  960. left:45px;
  961. top:337px;
  962. width:123px;
  963. height:117px;
  964. display:flex;
  965. }
  966. #u929 .text {
  967. position:absolute;
  968. align-self:center;
  969. padding:2px 2px 2px 2px;
  970. box-sizing:border-box;
  971. width:100%;
  972. }
  973. #u929_text {
  974. border-width:0px;
  975. word-wrap:break-word;
  976. text-transform:none;
  977. visibility:hidden;
  978. }
  979. #u930_div {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:718px;
  985. height:798px;
  986. background:inherit;
  987. background-color:rgba(255, 255, 255, 1);
  988. border:none;
  989. border-radius:16px;
  990. -moz-box-shadow:none;
  991. -webkit-box-shadow:none;
  992. box-shadow:none;
  993. }
  994. #u930 {
  995. border-width:0px;
  996. position:absolute;
  997. left:16px;
  998. top:701px;
  999. width:718px;
  1000. height:798px;
  1001. display:flex;
  1002. }
  1003. #u930 .text {
  1004. position:absolute;
  1005. align-self:center;
  1006. padding:2px 2px 2px 20px;
  1007. box-sizing:border-box;
  1008. width:100%;
  1009. }
  1010. #u930_text {
  1011. border-width:0px;
  1012. word-wrap:break-word;
  1013. text-transform:none;
  1014. visibility:hidden;
  1015. }
  1016. #u931_div {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:670px;
  1022. height:800px;
  1023. background:inherit;
  1024. background-color:rgba(255, 255, 255, 0);
  1025. border:none;
  1026. border-radius:0px;
  1027. -moz-box-shadow:none;
  1028. -webkit-box-shadow:none;
  1029. box-shadow:none;
  1030. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1031. font-weight:400;
  1032. font-style:normal;
  1033. font-size:24px;
  1034. color:rgba(0, 0, 0, 0.592156862745098);
  1035. line-height:40px;
  1036. }
  1037. #u931 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:40px;
  1041. top:778px;
  1042. width:670px;
  1043. height:800px;
  1044. display:flex;
  1045. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:24px;
  1049. color:rgba(0, 0, 0, 0.592156862745098);
  1050. line-height:40px;
  1051. }
  1052. #u931 .text {
  1053. position:absolute;
  1054. align-self:flex-start;
  1055. padding:0px 0px 0px 0px;
  1056. box-sizing:border-box;
  1057. width:100%;
  1058. }
  1059. #u931_text {
  1060. border-width:0px;
  1061. word-wrap:break-word;
  1062. text-transform:none;
  1063. }
  1064. #u932_div {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:0px;
  1068. top:0px;
  1069. width:104px;
  1070. height:35px;
  1071. background:inherit;
  1072. background-color:rgba(255, 255, 255, 0);
  1073. border:none;
  1074. border-radius:0px;
  1075. -moz-box-shadow:none;
  1076. -webkit-box-shadow:none;
  1077. box-shadow:none;
  1078. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1079. font-weight:500;
  1080. font-style:normal;
  1081. font-size:26px;
  1082. color:rgba(0, 0, 0, 0.8745098039215686);
  1083. }
  1084. #u932 {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:40px;
  1088. top:725px;
  1089. width:104px;
  1090. height:35px;
  1091. display:flex;
  1092. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1093. font-weight:500;
  1094. font-style:normal;
  1095. font-size:26px;
  1096. color:rgba(0, 0, 0, 0.8745098039215686);
  1097. }
  1098. #u932 .text {
  1099. position:absolute;
  1100. align-self:flex-start;
  1101. padding:0px 0px 0px 0px;
  1102. box-sizing:border-box;
  1103. width:100%;
  1104. }
  1105. #u932_text {
  1106. border-width:0px;
  1107. white-space:nowrap;
  1108. text-transform:none;
  1109. }
  1110. #u933 {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:0px;
  1114. top:0px;
  1115. width:0px;
  1116. height:0px;
  1117. }
  1118. #u934_div {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:0px;
  1122. top:0px;
  1123. width:718px;
  1124. height:166px;
  1125. background:inherit;
  1126. background-color:rgba(255, 255, 255, 1);
  1127. border:none;
  1128. border-radius:16px;
  1129. -moz-box-shadow:none;
  1130. -webkit-box-shadow:none;
  1131. box-shadow:none;
  1132. }
  1133. #u934 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:16px;
  1137. top:505px;
  1138. width:718px;
  1139. height:166px;
  1140. display:flex;
  1141. }
  1142. #u934 .text {
  1143. position:absolute;
  1144. align-self:center;
  1145. padding:2px 2px 2px 20px;
  1146. box-sizing:border-box;
  1147. width:100%;
  1148. }
  1149. #u934_text {
  1150. border-width:0px;
  1151. word-wrap:break-word;
  1152. text-transform:none;
  1153. visibility:hidden;
  1154. }
  1155. #u935_div {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:200px;
  1161. height:30px;
  1162. background:inherit;
  1163. background-color:rgba(255, 255, 255, 0);
  1164. border:none;
  1165. border-radius:0px;
  1166. -moz-box-shadow:none;
  1167. -webkit-box-shadow:none;
  1168. box-shadow:none;
  1169. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1170. font-weight:400;
  1171. font-style:normal;
  1172. font-size:28px;
  1173. color:rgba(0, 0, 0, 0.8745098039215686);
  1174. text-align:left;
  1175. line-height:30px;
  1176. }
  1177. #u935 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:206px;
  1181. top:551px;
  1182. width:200px;
  1183. height:30px;
  1184. display:flex;
  1185. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1186. font-weight:400;
  1187. font-style:normal;
  1188. font-size:28px;
  1189. color:rgba(0, 0, 0, 0.8745098039215686);
  1190. text-align:left;
  1191. line-height:30px;
  1192. }
  1193. #u935 .text {
  1194. position:absolute;
  1195. align-self:flex-start;
  1196. padding:0px 0px 0px 0px;
  1197. box-sizing:border-box;
  1198. width:100%;
  1199. }
  1200. #u935_text {
  1201. border-width:0px;
  1202. word-wrap:break-word;
  1203. text-transform:none;
  1204. }
  1205. #u936_div {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:122px;
  1211. height:64px;
  1212. background:inherit;
  1213. background-color:rgba(0, 0, 0, 0.050980392156862744);
  1214. border:none;
  1215. border-radius:200px;
  1216. -moz-box-shadow:none;
  1217. -webkit-box-shadow:none;
  1218. box-shadow:none;
  1219. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1220. font-weight:500;
  1221. font-style:normal;
  1222. font-size:24px;
  1223. }
  1224. #u936 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:588px;
  1228. top:556px;
  1229. width:122px;
  1230. height:64px;
  1231. display:flex;
  1232. opacity:0.5;
  1233. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1234. font-weight:500;
  1235. font-style:normal;
  1236. font-size:24px;
  1237. }
  1238. #u936 .text {
  1239. position:absolute;
  1240. align-self:center;
  1241. padding:2px 2px 2px 20px;
  1242. box-sizing:border-box;
  1243. width:100%;
  1244. }
  1245. #u936_text {
  1246. border-width:0px;
  1247. word-wrap:break-word;
  1248. text-transform:none;
  1249. }
  1250. #u937_img {
  1251. border-width:0px;
  1252. position:absolute;
  1253. left:0px;
  1254. top:0px;
  1255. width:123px;
  1256. height:117px;
  1257. }
  1258. #u937 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:45px;
  1262. top:522px;
  1263. width:123px;
  1264. height:117px;
  1265. display:flex;
  1266. }
  1267. #u937 .text {
  1268. position:absolute;
  1269. align-self:center;
  1270. padding:2px 2px 2px 2px;
  1271. box-sizing:border-box;
  1272. width:100%;
  1273. }
  1274. #u937_text {
  1275. border-width:0px;
  1276. word-wrap:break-word;
  1277. text-transform:none;
  1278. visibility:hidden;
  1279. }
  1280. #u938_div {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:339px;
  1286. height:32px;
  1287. background:inherit;
  1288. background-color:rgba(255, 255, 255, 0);
  1289. border:none;
  1290. border-radius:0px;
  1291. -moz-box-shadow:none;
  1292. -webkit-box-shadow:none;
  1293. box-shadow:none;
  1294. font-size:24px;
  1295. }
  1296. #u938 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:206px;
  1300. top:594px;
  1301. width:339px;
  1302. height:32px;
  1303. display:flex;
  1304. opacity:0.5;
  1305. font-size:24px;
  1306. }
  1307. #u938 .text {
  1308. position:absolute;
  1309. align-self:flex-start;
  1310. padding:0px 0px 0px 0px;
  1311. box-sizing:border-box;
  1312. width:100%;
  1313. }
  1314. #u938_text {
  1315. border-width:0px;
  1316. white-space:nowrap;
  1317. text-transform:none;
  1318. }
  1319. #u939_div {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:750px;
  1325. height:1201px;
  1326. background:inherit;
  1327. background-color:rgba(170, 170, 170, 0.4980392156862745);
  1328. border:none;
  1329. border-radius:0px;
  1330. -moz-box-shadow:none;
  1331. -webkit-box-shadow:none;
  1332. box-shadow:none;
  1333. }
  1334. #u939 {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:0px;
  1338. top:0px;
  1339. width:750px;
  1340. height:1201px;
  1341. display:flex;
  1342. }
  1343. #u939 .text {
  1344. position:absolute;
  1345. align-self:center;
  1346. padding:2px 2px 2px 20px;
  1347. box-sizing:border-box;
  1348. width:100%;
  1349. }
  1350. #u939_text {
  1351. border-width:0px;
  1352. word-wrap:break-word;
  1353. text-transform:none;
  1354. visibility:hidden;
  1355. }
  1356. #u940 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:0px;
  1362. height:0px;
  1363. }
  1364. #u941_img {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:750px;
  1370. height:465px;
  1371. }
  1372. #u941 {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:822px;
  1376. top:889px;
  1377. width:750px;
  1378. height:465px;
  1379. display:flex;
  1380. }
  1381. #u941 .text {
  1382. position:absolute;
  1383. align-self:center;
  1384. padding:2px 2px 2px 20px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u941_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. visibility:hidden;
  1393. }
  1394. #u942_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:690px;
  1400. height:116px;
  1401. background:inherit;
  1402. background-color:rgba(215, 215, 215, 1);
  1403. box-sizing:border-box;
  1404. border-width:2px;
  1405. border-style:solid;
  1406. border-color:rgba(234, 234, 234, 1);
  1407. border-left:0px;
  1408. border-top:0px;
  1409. border-right:0px;
  1410. border-radius:0px;
  1411. border-top-left-radius:0px;
  1412. border-top-right-radius:0px;
  1413. border-bottom-right-radius:0px;
  1414. border-bottom-left-radius:0px;
  1415. -moz-box-shadow:none;
  1416. -webkit-box-shadow:none;
  1417. box-shadow:none;
  1418. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1419. font-weight:500;
  1420. font-style:normal;
  1421. font-size:40px;
  1422. color:rgba(0, 0, 0, 0.8745098039215686);
  1423. text-align:left;
  1424. }
  1425. #u942 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:852px;
  1429. top:989px;
  1430. width:690px;
  1431. height:116px;
  1432. display:flex;
  1433. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1434. font-weight:500;
  1435. font-style:normal;
  1436. font-size:40px;
  1437. color:rgba(0, 0, 0, 0.8745098039215686);
  1438. text-align:left;
  1439. }
  1440. #u942 .text {
  1441. position:absolute;
  1442. align-self:center;
  1443. padding:2px 2px 2px 0px;
  1444. box-sizing:border-box;
  1445. width:100%;
  1446. }
  1447. #u942_text {
  1448. border-width:0px;
  1449. word-wrap:break-word;
  1450. text-transform:none;
  1451. }
  1452. #u943_div {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:252px;
  1458. height:52px;
  1459. background:inherit;
  1460. background-color:rgba(255, 255, 255, 0);
  1461. box-sizing:border-box;
  1462. border-width:2px;
  1463. border-style:solid;
  1464. border-color:rgba(121, 121, 121, 1);
  1465. border-radius:0px;
  1466. border-top-left-radius:0px;
  1467. border-top-right-radius:0px;
  1468. border-bottom-right-radius:0px;
  1469. border-bottom-left-radius:0px;
  1470. -moz-box-shadow:none;
  1471. -webkit-box-shadow:none;
  1472. box-shadow:none;
  1473. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1474. font-weight:400;
  1475. font-style:normal;
  1476. font-size:30px;
  1477. color:rgba(0, 0, 0, 0.8745098039215686);
  1478. text-align:center;
  1479. }
  1480. #u943 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:852px;
  1484. top:926px;
  1485. width:252px;
  1486. height:52px;
  1487. display:flex;
  1488. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1489. font-weight:400;
  1490. font-style:normal;
  1491. font-size:30px;
  1492. color:rgba(0, 0, 0, 0.8745098039215686);
  1493. text-align:center;
  1494. }
  1495. #u943 .text {
  1496. position:absolute;
  1497. align-self:center;
  1498. padding:0px 0px 0px 0px;
  1499. box-sizing:border-box;
  1500. width:100%;
  1501. }
  1502. #u943_text {
  1503. border-width:0px;
  1504. word-wrap:break-word;
  1505. text-transform:none;
  1506. }
  1507. #u944_div {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:524px;
  1513. height:84px;
  1514. background:inherit;
  1515. background-color:rgba(255, 255, 255, 1);
  1516. box-sizing:border-box;
  1517. border-width:2px;
  1518. border-style:solid;
  1519. border-color:rgba(121, 121, 121, 1);
  1520. border-radius:0px;
  1521. border-top-left-radius:0px;
  1522. border-top-right-radius:0px;
  1523. border-bottom-right-radius:0px;
  1524. border-bottom-left-radius:0px;
  1525. -moz-box-shadow:none;
  1526. -webkit-box-shadow:none;
  1527. box-shadow:none;
  1528. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1529. font-weight:400;
  1530. font-style:normal;
  1531. font-size:32px;
  1532. }
  1533. #u944 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:916px;
  1537. top:1228px;
  1538. width:524px;
  1539. height:84px;
  1540. display:flex;
  1541. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1542. font-weight:400;
  1543. font-style:normal;
  1544. font-size:32px;
  1545. }
  1546. #u944 .text {
  1547. position:absolute;
  1548. align-self:center;
  1549. padding:2px 2px 2px 2px;
  1550. box-sizing:border-box;
  1551. width:100%;
  1552. }
  1553. #u944_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. }
  1558. #u945_img {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:-3px;
  1562. top:-3px;
  1563. width:178px;
  1564. height:334px;
  1565. }
  1566. #u945 {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:672px;
  1570. top:602px;
  1571. width:162px;
  1572. height:318px;
  1573. display:flex;
  1574. }
  1575. #u945 .text {
  1576. position:absolute;
  1577. align-self:center;
  1578. padding:2px 2px 2px 20px;
  1579. box-sizing:border-box;
  1580. width:100%;
  1581. }
  1582. #u945_text {
  1583. border-width:0px;
  1584. word-wrap:break-word;
  1585. text-transform:none;
  1586. visibility:hidden;
  1587. }
  1588. #u946_div {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:372px;
  1594. height:146px;
  1595. background:inherit;
  1596. background-color:rgba(249, 236, 233, 0.2980392156862745);
  1597. border:none;
  1598. border-radius:0px;
  1599. -moz-box-shadow:none;
  1600. -webkit-box-shadow:none;
  1601. box-shadow:none;
  1602. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1603. font-weight:500;
  1604. font-style:normal;
  1605. font-size:28px;
  1606. color:#C43C1E;
  1607. text-align:left;
  1608. line-height:30px;
  1609. }
  1610. #u946 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:1585px;
  1614. top:948px;
  1615. width:372px;
  1616. height:146px;
  1617. display:flex;
  1618. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1619. font-weight:500;
  1620. font-style:normal;
  1621. font-size:28px;
  1622. color:#C43C1E;
  1623. text-align:left;
  1624. line-height:30px;
  1625. }
  1626. #u946 .text {
  1627. position:absolute;
  1628. align-self:flex-start;
  1629. padding:24px 24px 24px 24px;
  1630. box-sizing:border-box;
  1631. width:100%;
  1632. }
  1633. #u946_text {
  1634. border-width:0px;
  1635. word-wrap:break-word;
  1636. text-transform:none;
  1637. }
  1638. #u947 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:2026px;
  1642. top:0px;
  1643. width:753px;
  1644. height:1354px;
  1645. }
  1646. #u947_state0 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:753px;
  1652. height:1354px;
  1653. -ms-overflow-x:hidden;
  1654. overflow-x:hidden;
  1655. -ms-overflow-y:hidden;
  1656. overflow-y:hidden;
  1657. background-image:none;
  1658. border:none;
  1659. border-radius:0px;
  1660. -moz-box-shadow:none;
  1661. -webkit-box-shadow:none;
  1662. box-shadow:none;
  1663. }
  1664. #u947_state0_content {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:0px;
  1668. top:0px;
  1669. width:1px;
  1670. height:1px;
  1671. }
  1672. #u948_div {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:750px;
  1678. height:1201px;
  1679. background:inherit;
  1680. background-color:rgba(255, 255, 255, 0.4980392156862745);
  1681. border:none;
  1682. border-radius:0px;
  1683. -moz-box-shadow:none;
  1684. -webkit-box-shadow:none;
  1685. box-shadow:none;
  1686. }
  1687. #u948 {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:750px;
  1693. height:1201px;
  1694. display:flex;
  1695. }
  1696. #u948 .text {
  1697. position:absolute;
  1698. align-self:center;
  1699. padding:2px 2px 2px 20px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u948_text {
  1704. border-width:0px;
  1705. word-wrap:break-word;
  1706. text-transform:none;
  1707. visibility:hidden;
  1708. }
  1709. #u949_div {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:750px;
  1715. height:1125px;
  1716. background:inherit;
  1717. background-color:rgba(215, 215, 215, 1);
  1718. border:none;
  1719. border-radius:24px;
  1720. border-bottom-right-radius:0px;
  1721. border-bottom-left-radius:0px;
  1722. -moz-box-shadow:none;
  1723. -webkit-box-shadow:none;
  1724. box-shadow:none;
  1725. }
  1726. #u949 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:209px;
  1731. width:750px;
  1732. height:1125px;
  1733. display:flex;
  1734. }
  1735. #u949 .text {
  1736. position:absolute;
  1737. align-self:center;
  1738. padding:2px 2px 2px 20px;
  1739. box-sizing:border-box;
  1740. width:100%;
  1741. }
  1742. #u949_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. visibility:hidden;
  1747. }
  1748. #u950_div {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:128px;
  1754. height:49px;
  1755. background:inherit;
  1756. background-color:rgba(255, 255, 255, 0);
  1757. border:none;
  1758. border-radius:0px;
  1759. -moz-box-shadow:none;
  1760. -webkit-box-shadow:none;
  1761. box-shadow:none;
  1762. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1763. font-weight:500;
  1764. font-style:normal;
  1765. font-size:32px;
  1766. color:rgba(0, 0, 0, 0.8745098039215686);
  1767. text-align:left;
  1768. }
  1769. #u950 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:30px;
  1773. top:241px;
  1774. width:128px;
  1775. height:49px;
  1776. display:flex;
  1777. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1778. font-weight:500;
  1779. font-style:normal;
  1780. font-size:32px;
  1781. color:rgba(0, 0, 0, 0.8745098039215686);
  1782. text-align:left;
  1783. }
  1784. #u950 .text {
  1785. position:absolute;
  1786. align-self:flex-start;
  1787. padding:0px 0px 0px 0px;
  1788. box-sizing:border-box;
  1789. width:100%;
  1790. }
  1791. #u950_text {
  1792. border-width:0px;
  1793. white-space:nowrap;
  1794. text-transform:none;
  1795. }
  1796. #u951 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:0px;
  1802. height:0px;
  1803. }
  1804. #u952_div {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:718px;
  1810. height:166px;
  1811. background:inherit;
  1812. background-color:rgba(255, 255, 255, 1);
  1813. border:none;
  1814. border-radius:16px;
  1815. -moz-box-shadow:none;
  1816. -webkit-box-shadow:none;
  1817. box-shadow:none;
  1818. }
  1819. #u952 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:16px;
  1823. top:320px;
  1824. width:718px;
  1825. height:166px;
  1826. display:flex;
  1827. }
  1828. #u952 .text {
  1829. position:absolute;
  1830. align-self:center;
  1831. padding:2px 2px 2px 20px;
  1832. box-sizing:border-box;
  1833. width:100%;
  1834. }
  1835. #u952_text {
  1836. border-width:0px;
  1837. word-wrap:break-word;
  1838. text-transform:none;
  1839. visibility:hidden;
  1840. }
  1841. #u953_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:200px;
  1847. height:30px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 0);
  1850. border:none;
  1851. border-radius:0px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:28px;
  1859. color:rgba(0, 0, 0, 0.8745098039215686);
  1860. text-align:left;
  1861. line-height:30px;
  1862. }
  1863. #u953 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:206px;
  1867. top:381px;
  1868. width:200px;
  1869. height:30px;
  1870. display:flex;
  1871. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:28px;
  1875. color:rgba(0, 0, 0, 0.8745098039215686);
  1876. text-align:left;
  1877. line-height:30px;
  1878. }
  1879. #u953 .text {
  1880. position:absolute;
  1881. align-self:flex-start;
  1882. padding:0px 0px 0px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u953_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u954_div {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:122px;
  1897. height:64px;
  1898. background:inherit;
  1899. background-color:rgba(0, 0, 0, 0.050980392156862744);
  1900. border:none;
  1901. border-radius:200px;
  1902. -moz-box-shadow:none;
  1903. -webkit-box-shadow:none;
  1904. box-shadow:none;
  1905. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1906. font-weight:500;
  1907. font-style:normal;
  1908. font-size:24px;
  1909. }
  1910. #u954 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:588px;
  1914. top:371px;
  1915. width:122px;
  1916. height:64px;
  1917. display:flex;
  1918. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1919. font-weight:500;
  1920. font-style:normal;
  1921. font-size:24px;
  1922. }
  1923. #u954 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 2px 2px 20px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u954_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. }
  1935. #u955_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:123px;
  1941. height:117px;
  1942. }
  1943. #u955 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:45px;
  1947. top:337px;
  1948. width:123px;
  1949. height:117px;
  1950. display:flex;
  1951. }
  1952. #u955 .text {
  1953. position:absolute;
  1954. align-self:center;
  1955. padding:2px 2px 2px 2px;
  1956. box-sizing:border-box;
  1957. width:100%;
  1958. }
  1959. #u955_text {
  1960. border-width:0px;
  1961. word-wrap:break-word;
  1962. text-transform:none;
  1963. visibility:hidden;
  1964. }
  1965. #u956_div {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:718px;
  1971. height:798px;
  1972. background:inherit;
  1973. background-color:rgba(255, 255, 255, 1);
  1974. border:none;
  1975. border-radius:16px;
  1976. -moz-box-shadow:none;
  1977. -webkit-box-shadow:none;
  1978. box-shadow:none;
  1979. }
  1980. #u956 {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:16px;
  1984. top:701px;
  1985. width:718px;
  1986. height:798px;
  1987. display:flex;
  1988. }
  1989. #u956 .text {
  1990. position:absolute;
  1991. align-self:center;
  1992. padding:2px 2px 2px 20px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u956_text {
  1997. border-width:0px;
  1998. word-wrap:break-word;
  1999. text-transform:none;
  2000. visibility:hidden;
  2001. }
  2002. #u957_div {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:670px;
  2008. height:800px;
  2009. background:inherit;
  2010. background-color:rgba(255, 255, 255, 0);
  2011. border:none;
  2012. border-radius:0px;
  2013. -moz-box-shadow:none;
  2014. -webkit-box-shadow:none;
  2015. box-shadow:none;
  2016. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:24px;
  2020. color:rgba(0, 0, 0, 0.592156862745098);
  2021. line-height:40px;
  2022. }
  2023. #u957 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:40px;
  2027. top:778px;
  2028. width:670px;
  2029. height:800px;
  2030. display:flex;
  2031. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:24px;
  2035. color:rgba(0, 0, 0, 0.592156862745098);
  2036. line-height:40px;
  2037. }
  2038. #u957 .text {
  2039. position:absolute;
  2040. align-self:flex-start;
  2041. padding:0px 0px 0px 0px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u957_text {
  2046. border-width:0px;
  2047. word-wrap:break-word;
  2048. text-transform:none;
  2049. }
  2050. #u958_div {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:104px;
  2056. height:35px;
  2057. background:inherit;
  2058. background-color:rgba(255, 255, 255, 0);
  2059. border:none;
  2060. border-radius:0px;
  2061. -moz-box-shadow:none;
  2062. -webkit-box-shadow:none;
  2063. box-shadow:none;
  2064. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2065. font-weight:500;
  2066. font-style:normal;
  2067. font-size:26px;
  2068. color:rgba(0, 0, 0, 0.8745098039215686);
  2069. }
  2070. #u958 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:40px;
  2074. top:725px;
  2075. width:104px;
  2076. height:35px;
  2077. display:flex;
  2078. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2079. font-weight:500;
  2080. font-style:normal;
  2081. font-size:26px;
  2082. color:rgba(0, 0, 0, 0.8745098039215686);
  2083. }
  2084. #u958 .text {
  2085. position:absolute;
  2086. align-self:flex-start;
  2087. padding:0px 0px 0px 0px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u958_text {
  2092. border-width:0px;
  2093. white-space:nowrap;
  2094. text-transform:none;
  2095. }
  2096. #u959 {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:0px;
  2102. height:0px;
  2103. }
  2104. #u960_div {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:718px;
  2110. height:166px;
  2111. background:inherit;
  2112. background-color:rgba(255, 255, 255, 1);
  2113. border:none;
  2114. border-radius:16px;
  2115. -moz-box-shadow:none;
  2116. -webkit-box-shadow:none;
  2117. box-shadow:none;
  2118. }
  2119. #u960 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:16px;
  2123. top:505px;
  2124. width:718px;
  2125. height:166px;
  2126. display:flex;
  2127. }
  2128. #u960 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 20px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u960_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u961_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:200px;
  2147. height:30px;
  2148. background:inherit;
  2149. background-color:rgba(255, 255, 255, 0);
  2150. border:none;
  2151. border-radius:0px;
  2152. -moz-box-shadow:none;
  2153. -webkit-box-shadow:none;
  2154. box-shadow:none;
  2155. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:28px;
  2159. color:rgba(0, 0, 0, 0.8745098039215686);
  2160. text-align:left;
  2161. line-height:30px;
  2162. }
  2163. #u961 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:206px;
  2167. top:566px;
  2168. width:200px;
  2169. height:30px;
  2170. display:flex;
  2171. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2172. font-weight:400;
  2173. font-style:normal;
  2174. font-size:28px;
  2175. color:rgba(0, 0, 0, 0.8745098039215686);
  2176. text-align:left;
  2177. line-height:30px;
  2178. }
  2179. #u961 .text {
  2180. position:absolute;
  2181. align-self:flex-start;
  2182. padding:0px 0px 0px 0px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u961_text {
  2187. border-width:0px;
  2188. word-wrap:break-word;
  2189. text-transform:none;
  2190. }
  2191. #u962_div {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:122px;
  2197. height:64px;
  2198. background:inherit;
  2199. background-color:rgba(0, 0, 0, 0.050980392156862744);
  2200. border:none;
  2201. border-radius:200px;
  2202. -moz-box-shadow:none;
  2203. -webkit-box-shadow:none;
  2204. box-shadow:none;
  2205. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2206. font-weight:500;
  2207. font-style:normal;
  2208. font-size:24px;
  2209. color:#D7D7D7;
  2210. }
  2211. #u962 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:588px;
  2215. top:556px;
  2216. width:122px;
  2217. height:64px;
  2218. display:flex;
  2219. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2220. font-weight:500;
  2221. font-style:normal;
  2222. font-size:24px;
  2223. color:#D7D7D7;
  2224. }
  2225. #u962 .text {
  2226. position:absolute;
  2227. align-self:center;
  2228. padding:2px 2px 2px 20px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u962_text {
  2233. border-width:0px;
  2234. word-wrap:break-word;
  2235. text-transform:none;
  2236. }
  2237. #u963_img {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:123px;
  2243. height:117px;
  2244. }
  2245. #u963 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:45px;
  2249. top:522px;
  2250. width:123px;
  2251. height:117px;
  2252. display:flex;
  2253. }
  2254. #u963 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 2px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u963_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. visibility:hidden;
  2266. }
  2267. #u964_div {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:1px;
  2273. height:40px;
  2274. background:inherit;
  2275. background-color:rgba(255, 255, 255, 0);
  2276. border:none;
  2277. border-radius:0px;
  2278. -moz-box-shadow:none;
  2279. -webkit-box-shadow:none;
  2280. box-shadow:none;
  2281. font-size:24px;
  2282. }
  2283. #u964 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:206px;
  2287. top:594px;
  2288. width:1px;
  2289. height:40px;
  2290. display:flex;
  2291. opacity:0.5;
  2292. font-size:24px;
  2293. }
  2294. #u964 .text {
  2295. position:absolute;
  2296. align-self:flex-start;
  2297. padding:0px 0px 0px 0px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u964_text {
  2302. border-width:0px;
  2303. white-space:nowrap;
  2304. text-transform:none;
  2305. visibility:hidden;
  2306. }
  2307. #u965 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:2906px;
  2311. top:0px;
  2312. width:753px;
  2313. height:1354px;
  2314. }
  2315. #u965_state0 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:753px;
  2321. height:1354px;
  2322. -ms-overflow-x:hidden;
  2323. overflow-x:hidden;
  2324. -ms-overflow-y:hidden;
  2325. overflow-y:hidden;
  2326. background-image:none;
  2327. border:none;
  2328. border-radius:0px;
  2329. -moz-box-shadow:none;
  2330. -webkit-box-shadow:none;
  2331. box-shadow:none;
  2332. }
  2333. #u965_state0_content {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:1px;
  2339. height:1px;
  2340. }
  2341. #u966_div {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:750px;
  2347. height:1201px;
  2348. background:inherit;
  2349. background-color:rgba(255, 255, 255, 0.4980392156862745);
  2350. border:none;
  2351. border-radius:0px;
  2352. -moz-box-shadow:none;
  2353. -webkit-box-shadow:none;
  2354. box-shadow:none;
  2355. }
  2356. #u966 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:750px;
  2362. height:1201px;
  2363. display:flex;
  2364. }
  2365. #u966 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:2px 2px 2px 20px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u966_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. visibility:hidden;
  2377. }
  2378. #u967_div {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:750px;
  2384. height:1145px;
  2385. background:inherit;
  2386. background-color:rgba(215, 215, 215, 1);
  2387. border:none;
  2388. border-radius:24px;
  2389. border-bottom-right-radius:0px;
  2390. border-bottom-left-radius:0px;
  2391. -moz-box-shadow:none;
  2392. -webkit-box-shadow:none;
  2393. box-shadow:none;
  2394. }
  2395. #u967 {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:209px;
  2400. width:750px;
  2401. height:1145px;
  2402. display:flex;
  2403. }
  2404. #u967 .text {
  2405. position:absolute;
  2406. align-self:center;
  2407. padding:2px 2px 2px 20px;
  2408. box-sizing:border-box;
  2409. width:100%;
  2410. }
  2411. #u967_text {
  2412. border-width:0px;
  2413. word-wrap:break-word;
  2414. text-transform:none;
  2415. visibility:hidden;
  2416. }
  2417. #u968_div {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:128px;
  2423. height:49px;
  2424. background:inherit;
  2425. background-color:rgba(255, 255, 255, 0);
  2426. border:none;
  2427. border-radius:0px;
  2428. -moz-box-shadow:none;
  2429. -webkit-box-shadow:none;
  2430. box-shadow:none;
  2431. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2432. font-weight:500;
  2433. font-style:normal;
  2434. font-size:32px;
  2435. color:rgba(0, 0, 0, 0.8745098039215686);
  2436. text-align:left;
  2437. }
  2438. #u968 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:30px;
  2442. top:241px;
  2443. width:128px;
  2444. height:49px;
  2445. display:flex;
  2446. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2447. font-weight:500;
  2448. font-style:normal;
  2449. font-size:32px;
  2450. color:rgba(0, 0, 0, 0.8745098039215686);
  2451. text-align:left;
  2452. }
  2453. #u968 .text {
  2454. position:absolute;
  2455. align-self:flex-start;
  2456. padding:0px 0px 0px 0px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u968_text {
  2461. border-width:0px;
  2462. white-space:nowrap;
  2463. text-transform:none;
  2464. }
  2465. #u969 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:0px;
  2471. height:0px;
  2472. }
  2473. #u970_div {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:0px;
  2477. top:0px;
  2478. width:718px;
  2479. height:166px;
  2480. background:inherit;
  2481. background-color:rgba(255, 255, 255, 1);
  2482. border:none;
  2483. border-radius:16px;
  2484. -moz-box-shadow:none;
  2485. -webkit-box-shadow:none;
  2486. box-shadow:none;
  2487. }
  2488. #u970 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:16px;
  2492. top:320px;
  2493. width:718px;
  2494. height:166px;
  2495. display:flex;
  2496. }
  2497. #u970 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 20px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u970_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. visibility:hidden;
  2509. }
  2510. #u971_div {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:200px;
  2516. height:30px;
  2517. background:inherit;
  2518. background-color:rgba(255, 255, 255, 0);
  2519. border:none;
  2520. border-radius:0px;
  2521. -moz-box-shadow:none;
  2522. -webkit-box-shadow:none;
  2523. box-shadow:none;
  2524. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:28px;
  2528. color:rgba(0, 0, 0, 0.8745098039215686);
  2529. text-align:left;
  2530. line-height:30px;
  2531. }
  2532. #u971 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:201px;
  2536. top:373px;
  2537. width:200px;
  2538. height:30px;
  2539. display:flex;
  2540. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:28px;
  2544. color:rgba(0, 0, 0, 0.8745098039215686);
  2545. text-align:left;
  2546. line-height:30px;
  2547. }
  2548. #u971 .text {
  2549. position:absolute;
  2550. align-self:flex-start;
  2551. padding:0px 0px 0px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u971_text {
  2556. border-width:0px;
  2557. word-wrap:break-word;
  2558. text-transform:none;
  2559. }
  2560. #u972_img {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:123px;
  2566. height:117px;
  2567. }
  2568. #u972 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:45px;
  2572. top:337px;
  2573. width:123px;
  2574. height:117px;
  2575. display:flex;
  2576. }
  2577. #u972 .text {
  2578. position:absolute;
  2579. align-self:center;
  2580. padding:2px 2px 2px 2px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u972_text {
  2585. border-width:0px;
  2586. word-wrap:break-word;
  2587. text-transform:none;
  2588. visibility:hidden;
  2589. }
  2590. #u973_div {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:258px;
  2596. height:21px;
  2597. background:inherit;
  2598. background-color:rgba(255, 255, 255, 0);
  2599. border:none;
  2600. border-radius:0px;
  2601. -moz-box-shadow:none;
  2602. -webkit-box-shadow:none;
  2603. box-shadow:none;
  2604. }
  2605. #u973 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:201px;
  2609. top:433px;
  2610. width:258px;
  2611. height:21px;
  2612. display:flex;
  2613. }
  2614. #u973 .text {
  2615. position:absolute;
  2616. align-self:flex-start;
  2617. padding:0px 0px 0px 0px;
  2618. box-sizing:border-box;
  2619. width:100%;
  2620. }
  2621. #u973_text {
  2622. border-width:0px;
  2623. white-space:nowrap;
  2624. text-transform:none;
  2625. }
  2626. #u974 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:0px;
  2632. height:0px;
  2633. }
  2634. #u975_div {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:718px;
  2640. height:166px;
  2641. background:inherit;
  2642. background-color:rgba(255, 255, 255, 1);
  2643. border:none;
  2644. border-radius:16px;
  2645. -moz-box-shadow:none;
  2646. -webkit-box-shadow:none;
  2647. box-shadow:none;
  2648. }
  2649. #u975 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:16px;
  2653. top:505px;
  2654. width:718px;
  2655. height:166px;
  2656. display:flex;
  2657. }
  2658. #u975 .text {
  2659. position:absolute;
  2660. align-self:center;
  2661. padding:2px 2px 2px 20px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u975_text {
  2666. border-width:0px;
  2667. word-wrap:break-word;
  2668. text-transform:none;
  2669. visibility:hidden;
  2670. }
  2671. #u976_div {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:200px;
  2677. height:35px;
  2678. background:inherit;
  2679. background-color:rgba(255, 255, 255, 0);
  2680. border:none;
  2681. border-radius:0px;
  2682. -moz-box-shadow:none;
  2683. -webkit-box-shadow:none;
  2684. box-shadow:none;
  2685. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:28px;
  2689. color:rgba(0, 0, 0, 0.8745098039215686);
  2690. text-align:left;
  2691. line-height:30px;
  2692. }
  2693. #u976 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:206px;
  2697. top:557px;
  2698. width:200px;
  2699. height:35px;
  2700. display:flex;
  2701. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:28px;
  2705. color:rgba(0, 0, 0, 0.8745098039215686);
  2706. text-align:left;
  2707. line-height:30px;
  2708. }
  2709. #u976 .text {
  2710. position:absolute;
  2711. align-self:flex-start;
  2712. padding:0px 0px 0px 0px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u976_text {
  2717. border-width:0px;
  2718. word-wrap:break-word;
  2719. text-transform:none;
  2720. }
  2721. #u977_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:123px;
  2727. height:117px;
  2728. }
  2729. #u977 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:45px;
  2733. top:522px;
  2734. width:123px;
  2735. height:117px;
  2736. display:flex;
  2737. }
  2738. #u977 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 2px 2px 2px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u977_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u978_div {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:258px;
  2757. height:21px;
  2758. background:inherit;
  2759. background-color:rgba(255, 255, 255, 0);
  2760. border:none;
  2761. border-radius:0px;
  2762. -moz-box-shadow:none;
  2763. -webkit-box-shadow:none;
  2764. box-shadow:none;
  2765. }
  2766. #u978 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:206px;
  2770. top:618px;
  2771. width:258px;
  2772. height:21px;
  2773. display:flex;
  2774. }
  2775. #u978 .text {
  2776. position:absolute;
  2777. align-self:flex-start;
  2778. padding:0px 0px 0px 0px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u978_text {
  2783. border-width:0px;
  2784. white-space:nowrap;
  2785. text-transform:none;
  2786. }
  2787. #u979_div {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:1px;
  2793. height:40px;
  2794. background:inherit;
  2795. background-color:rgba(255, 255, 255, 0);
  2796. border:none;
  2797. border-radius:0px;
  2798. -moz-box-shadow:none;
  2799. -webkit-box-shadow:none;
  2800. box-shadow:none;
  2801. font-size:24px;
  2802. }
  2803. #u979 {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:206px;
  2807. top:594px;
  2808. width:1px;
  2809. height:40px;
  2810. display:flex;
  2811. opacity:0.5;
  2812. font-size:24px;
  2813. }
  2814. #u979 .text {
  2815. position:absolute;
  2816. align-self:flex-start;
  2817. padding:0px 0px 0px 0px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u979_text {
  2822. border-width:0px;
  2823. white-space:nowrap;
  2824. text-transform:none;
  2825. visibility:hidden;
  2826. }
  2827. #u980_div {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:103px;
  2833. height:25px;
  2834. background:inherit;
  2835. background-color:rgba(255, 255, 255, 1);
  2836. box-sizing:border-box;
  2837. border-width:1px;
  2838. border-style:solid;
  2839. border-color:rgba(217, 0, 27, 1);
  2840. border-radius:5px;
  2841. -moz-box-shadow:none;
  2842. -webkit-box-shadow:none;
  2843. box-shadow:none;
  2844. }
  2845. #u980 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:599px;
  2849. top:337px;
  2850. width:103px;
  2851. height:25px;
  2852. display:flex;
  2853. }
  2854. #u980 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 2px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u980_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. }
  2866. #u981_div {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:103px;
  2872. height:25px;
  2873. background:inherit;
  2874. background-color:rgba(255, 255, 255, 1);
  2875. box-sizing:border-box;
  2876. border-width:1px;
  2877. border-style:solid;
  2878. border-color:rgba(2, 167, 240, 1);
  2879. border-radius:5px;
  2880. -moz-box-shadow:none;
  2881. -webkit-box-shadow:none;
  2882. box-shadow:none;
  2883. color:#02A7F0;
  2884. }
  2885. #u981 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:599px;
  2889. top:522px;
  2890. width:103px;
  2891. height:25px;
  2892. display:flex;
  2893. color:#02A7F0;
  2894. }
  2895. #u981 .text {
  2896. position:absolute;
  2897. align-self:center;
  2898. padding:2px 2px 2px 2px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u981_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. }
  2907. #u982 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:0px;
  2913. height:0px;
  2914. }
  2915. #u983_div {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:718px;
  2921. height:166px;
  2922. background:inherit;
  2923. background-color:rgba(255, 255, 255, 1);
  2924. border:none;
  2925. border-radius:16px;
  2926. -moz-box-shadow:none;
  2927. -webkit-box-shadow:none;
  2928. box-shadow:none;
  2929. }
  2930. #u983 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:16px;
  2934. top:686px;
  2935. width:718px;
  2936. height:166px;
  2937. display:flex;
  2938. }
  2939. #u983 .text {
  2940. position:absolute;
  2941. align-self:center;
  2942. padding:2px 2px 2px 20px;
  2943. box-sizing:border-box;
  2944. width:100%;
  2945. }
  2946. #u983_text {
  2947. border-width:0px;
  2948. word-wrap:break-word;
  2949. text-transform:none;
  2950. visibility:hidden;
  2951. }
  2952. #u984_div {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:200px;
  2958. height:35px;
  2959. background:inherit;
  2960. background-color:rgba(255, 255, 255, 0);
  2961. border:none;
  2962. border-radius:0px;
  2963. -moz-box-shadow:none;
  2964. -webkit-box-shadow:none;
  2965. box-shadow:none;
  2966. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. font-size:28px;
  2970. color:rgba(0, 0, 0, 0.8745098039215686);
  2971. text-align:left;
  2972. line-height:30px;
  2973. }
  2974. #u984 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:206px;
  2978. top:738px;
  2979. width:200px;
  2980. height:35px;
  2981. display:flex;
  2982. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2983. font-weight:400;
  2984. font-style:normal;
  2985. font-size:28px;
  2986. color:rgba(0, 0, 0, 0.8745098039215686);
  2987. text-align:left;
  2988. line-height:30px;
  2989. }
  2990. #u984 .text {
  2991. position:absolute;
  2992. align-self:flex-start;
  2993. padding:0px 0px 0px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u984_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. }
  3002. #u985_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:123px;
  3008. height:117px;
  3009. }
  3010. #u985 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:45px;
  3014. top:703px;
  3015. width:123px;
  3016. height:117px;
  3017. display:flex;
  3018. }
  3019. #u985 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 2px 2px 2px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u985_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. visibility:hidden;
  3031. }
  3032. #u986_div {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:258px;
  3038. height:21px;
  3039. background:inherit;
  3040. background-color:rgba(255, 255, 255, 0);
  3041. border:none;
  3042. border-radius:0px;
  3043. -moz-box-shadow:none;
  3044. -webkit-box-shadow:none;
  3045. box-shadow:none;
  3046. }
  3047. #u986 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:206px;
  3051. top:799px;
  3052. width:258px;
  3053. height:21px;
  3054. display:flex;
  3055. }
  3056. #u986 .text {
  3057. position:absolute;
  3058. align-self:flex-start;
  3059. padding:0px 0px 0px 0px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u986_text {
  3064. border-width:0px;
  3065. white-space:nowrap;
  3066. text-transform:none;
  3067. }
  3068. #u987_div {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:1px;
  3074. height:40px;
  3075. background:inherit;
  3076. background-color:rgba(255, 255, 255, 0);
  3077. border:none;
  3078. border-radius:0px;
  3079. -moz-box-shadow:none;
  3080. -webkit-box-shadow:none;
  3081. box-shadow:none;
  3082. font-size:24px;
  3083. }
  3084. #u987 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:206px;
  3088. top:775px;
  3089. width:1px;
  3090. height:40px;
  3091. display:flex;
  3092. opacity:0.5;
  3093. font-size:24px;
  3094. }
  3095. #u987 .text {
  3096. position:absolute;
  3097. align-self:flex-start;
  3098. padding:0px 0px 0px 0px;
  3099. box-sizing:border-box;
  3100. width:100%;
  3101. }
  3102. #u987_text {
  3103. border-width:0px;
  3104. white-space:nowrap;
  3105. text-transform:none;
  3106. visibility:hidden;
  3107. }
  3108. #u988_div {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:103px;
  3114. height:25px;
  3115. background:inherit;
  3116. background-color:rgba(255, 255, 255, 1);
  3117. box-sizing:border-box;
  3118. border-width:1px;
  3119. border-style:solid;
  3120. border-color:rgba(2, 167, 240, 1);
  3121. border-radius:5px;
  3122. -moz-box-shadow:none;
  3123. -webkit-box-shadow:none;
  3124. box-shadow:none;
  3125. color:#02A7F0;
  3126. }
  3127. #u988 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:599px;
  3131. top:703px;
  3132. width:103px;
  3133. height:25px;
  3134. display:flex;
  3135. color:#02A7F0;
  3136. }
  3137. #u988 .text {
  3138. position:absolute;
  3139. align-self:center;
  3140. padding:2px 2px 2px 2px;
  3141. box-sizing:border-box;
  3142. width:100%;
  3143. }
  3144. #u988_text {
  3145. border-width:0px;
  3146. word-wrap:break-word;
  3147. text-transform:none;
  3148. }
  3149. #u989 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:0px;
  3155. height:0px;
  3156. }
  3157. #u990_div {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:718px;
  3163. height:166px;
  3164. background:inherit;
  3165. background-color:rgba(255, 255, 255, 1);
  3166. border:none;
  3167. border-radius:16px;
  3168. -moz-box-shadow:none;
  3169. -webkit-box-shadow:none;
  3170. box-shadow:none;
  3171. }
  3172. #u990 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:16px;
  3176. top:865px;
  3177. width:718px;
  3178. height:166px;
  3179. display:flex;
  3180. }
  3181. #u990 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 20px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u990_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u991_div {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:200px;
  3200. height:35px;
  3201. background:inherit;
  3202. background-color:rgba(255, 255, 255, 0);
  3203. border:none;
  3204. border-radius:0px;
  3205. -moz-box-shadow:none;
  3206. -webkit-box-shadow:none;
  3207. box-shadow:none;
  3208. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:28px;
  3212. color:rgba(0, 0, 0, 0.8745098039215686);
  3213. text-align:left;
  3214. line-height:30px;
  3215. }
  3216. #u991 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:206px;
  3220. top:917px;
  3221. width:200px;
  3222. height:35px;
  3223. display:flex;
  3224. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:28px;
  3228. color:rgba(0, 0, 0, 0.8745098039215686);
  3229. text-align:left;
  3230. line-height:30px;
  3231. }
  3232. #u991 .text {
  3233. position:absolute;
  3234. align-self:flex-start;
  3235. padding:0px 0px 0px 0px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u991_text {
  3240. border-width:0px;
  3241. word-wrap:break-word;
  3242. text-transform:none;
  3243. }
  3244. #u992_img {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:123px;
  3250. height:117px;
  3251. }
  3252. #u992 {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:45px;
  3256. top:882px;
  3257. width:123px;
  3258. height:117px;
  3259. display:flex;
  3260. }
  3261. #u992 .text {
  3262. position:absolute;
  3263. align-self:center;
  3264. padding:2px 2px 2px 2px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u992_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u993_div {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:258px;
  3280. height:21px;
  3281. background:inherit;
  3282. background-color:rgba(255, 255, 255, 0);
  3283. border:none;
  3284. border-radius:0px;
  3285. -moz-box-shadow:none;
  3286. -webkit-box-shadow:none;
  3287. box-shadow:none;
  3288. }
  3289. #u993 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:206px;
  3293. top:978px;
  3294. width:258px;
  3295. height:21px;
  3296. display:flex;
  3297. }
  3298. #u993 .text {
  3299. position:absolute;
  3300. align-self:flex-start;
  3301. padding:0px 0px 0px 0px;
  3302. box-sizing:border-box;
  3303. width:100%;
  3304. }
  3305. #u993_text {
  3306. border-width:0px;
  3307. white-space:nowrap;
  3308. text-transform:none;
  3309. }
  3310. #u994 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:0px;
  3316. height:0px;
  3317. }
  3318. #u995_div {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:718px;
  3324. height:166px;
  3325. background:inherit;
  3326. background-color:rgba(255, 255, 255, 1);
  3327. border:none;
  3328. border-radius:16px;
  3329. -moz-box-shadow:none;
  3330. -webkit-box-shadow:none;
  3331. box-shadow:none;
  3332. }
  3333. #u995 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:16px;
  3337. top:1046px;
  3338. width:718px;
  3339. height:166px;
  3340. display:flex;
  3341. }
  3342. #u995 .text {
  3343. position:absolute;
  3344. align-self:center;
  3345. padding:2px 2px 2px 20px;
  3346. box-sizing:border-box;
  3347. width:100%;
  3348. }
  3349. #u995_text {
  3350. border-width:0px;
  3351. word-wrap:break-word;
  3352. text-transform:none;
  3353. visibility:hidden;
  3354. }
  3355. #u996_div {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:200px;
  3361. height:35px;
  3362. background:inherit;
  3363. background-color:rgba(255, 255, 255, 0);
  3364. border:none;
  3365. border-radius:0px;
  3366. -moz-box-shadow:none;
  3367. -webkit-box-shadow:none;
  3368. box-shadow:none;
  3369. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:28px;
  3373. color:rgba(0, 0, 0, 0.8745098039215686);
  3374. text-align:left;
  3375. line-height:30px;
  3376. }
  3377. #u996 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:206px;
  3381. top:1098px;
  3382. width:200px;
  3383. height:35px;
  3384. display:flex;
  3385. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:28px;
  3389. color:rgba(0, 0, 0, 0.8745098039215686);
  3390. text-align:left;
  3391. line-height:30px;
  3392. }
  3393. #u996 .text {
  3394. position:absolute;
  3395. align-self:flex-start;
  3396. padding:0px 0px 0px 0px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u996_text {
  3401. border-width:0px;
  3402. word-wrap:break-word;
  3403. text-transform:none;
  3404. }
  3405. #u997_img {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:123px;
  3411. height:117px;
  3412. }
  3413. #u997 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:45px;
  3417. top:1063px;
  3418. width:123px;
  3419. height:117px;
  3420. display:flex;
  3421. }
  3422. #u997 .text {
  3423. position:absolute;
  3424. align-self:center;
  3425. padding:2px 2px 2px 2px;
  3426. box-sizing:border-box;
  3427. width:100%;
  3428. }
  3429. #u997_text {
  3430. border-width:0px;
  3431. word-wrap:break-word;
  3432. text-transform:none;
  3433. visibility:hidden;
  3434. }
  3435. #u998_div {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:258px;
  3441. height:21px;
  3442. background:inherit;
  3443. background-color:rgba(255, 255, 255, 0);
  3444. border:none;
  3445. border-radius:0px;
  3446. -moz-box-shadow:none;
  3447. -webkit-box-shadow:none;
  3448. box-shadow:none;
  3449. }
  3450. #u998 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:206px;
  3454. top:1159px;
  3455. width:258px;
  3456. height:21px;
  3457. display:flex;
  3458. }
  3459. #u998 .text {
  3460. position:absolute;
  3461. align-self:flex-start;
  3462. padding:0px 0px 0px 0px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u998_text {
  3467. border-width:0px;
  3468. white-space:nowrap;
  3469. text-transform:none;
  3470. }
  3471. #u999_div {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:1px;
  3477. height:40px;
  3478. background:inherit;
  3479. background-color:rgba(255, 255, 255, 0);
  3480. border:none;
  3481. border-radius:0px;
  3482. -moz-box-shadow:none;
  3483. -webkit-box-shadow:none;
  3484. box-shadow:none;
  3485. font-size:24px;
  3486. }
  3487. #u999 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:206px;
  3491. top:1135px;
  3492. width:1px;
  3493. height:40px;
  3494. display:flex;
  3495. opacity:0.5;
  3496. font-size:24px;
  3497. }
  3498. #u999 .text {
  3499. position:absolute;
  3500. align-self:flex-start;
  3501. padding:0px 0px 0px 0px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u999_text {
  3506. border-width:0px;
  3507. white-space:nowrap;
  3508. text-transform:none;
  3509. visibility:hidden;
  3510. }
  3511. #u1000_div {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:103px;
  3517. height:25px;
  3518. background:inherit;
  3519. background-color:rgba(255, 255, 255, 1);
  3520. box-sizing:border-box;
  3521. border-width:1px;
  3522. border-style:solid;
  3523. border-color:rgba(2, 167, 240, 1);
  3524. border-radius:5px;
  3525. -moz-box-shadow:none;
  3526. -webkit-box-shadow:none;
  3527. box-shadow:none;
  3528. color:#02A7F0;
  3529. }
  3530. #u1000 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:599px;
  3534. top:1063px;
  3535. width:103px;
  3536. height:25px;
  3537. display:flex;
  3538. color:#02A7F0;
  3539. }
  3540. #u1000 .text {
  3541. position:absolute;
  3542. align-self:center;
  3543. padding:2px 2px 2px 2px;
  3544. box-sizing:border-box;
  3545. width:100%;
  3546. }
  3547. #u1000_text {
  3548. border-width:0px;
  3549. word-wrap:break-word;
  3550. text-transform:none;
  3551. }
  3552. #u1001 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:0px;
  3558. height:0px;
  3559. }
  3560. #u1002_div {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:718px;
  3566. height:166px;
  3567. background:inherit;
  3568. background-color:rgba(255, 255, 255, 1);
  3569. border:none;
  3570. border-radius:16px;
  3571. -moz-box-shadow:none;
  3572. -webkit-box-shadow:none;
  3573. box-shadow:none;
  3574. }
  3575. #u1002 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:16px;
  3579. top:1227px;
  3580. width:718px;
  3581. height:166px;
  3582. display:flex;
  3583. }
  3584. #u1002 .text {
  3585. position:absolute;
  3586. align-self:center;
  3587. padding:2px 2px 2px 20px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u1002_text {
  3592. border-width:0px;
  3593. word-wrap:break-word;
  3594. text-transform:none;
  3595. visibility:hidden;
  3596. }
  3597. #u1003_div {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:200px;
  3603. height:35px;
  3604. background:inherit;
  3605. background-color:rgba(255, 255, 255, 0);
  3606. border:none;
  3607. border-radius:0px;
  3608. -moz-box-shadow:none;
  3609. -webkit-box-shadow:none;
  3610. box-shadow:none;
  3611. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3612. font-weight:400;
  3613. font-style:normal;
  3614. font-size:28px;
  3615. color:rgba(0, 0, 0, 0.8745098039215686);
  3616. text-align:left;
  3617. line-height:30px;
  3618. }
  3619. #u1003 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:206px;
  3623. top:1279px;
  3624. width:200px;
  3625. height:35px;
  3626. display:flex;
  3627. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3628. font-weight:400;
  3629. font-style:normal;
  3630. font-size:28px;
  3631. color:rgba(0, 0, 0, 0.8745098039215686);
  3632. text-align:left;
  3633. line-height:30px;
  3634. }
  3635. #u1003 .text {
  3636. position:absolute;
  3637. align-self:flex-start;
  3638. padding:0px 0px 0px 0px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u1003_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. }
  3647. #u1004_img {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:123px;
  3653. height:117px;
  3654. }
  3655. #u1004 {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:45px;
  3659. top:1244px;
  3660. width:123px;
  3661. height:117px;
  3662. display:flex;
  3663. }
  3664. #u1004 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 2px 2px 2px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u1004_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. visibility:hidden;
  3676. }
  3677. #u1005_div {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:258px;
  3683. height:21px;
  3684. background:inherit;
  3685. background-color:rgba(255, 255, 255, 0);
  3686. border:none;
  3687. border-radius:0px;
  3688. -moz-box-shadow:none;
  3689. -webkit-box-shadow:none;
  3690. box-shadow:none;
  3691. }
  3692. #u1005 {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:206px;
  3696. top:1340px;
  3697. width:258px;
  3698. height:21px;
  3699. display:flex;
  3700. }
  3701. #u1005 .text {
  3702. position:absolute;
  3703. align-self:flex-start;
  3704. padding:0px 0px 0px 0px;
  3705. box-sizing:border-box;
  3706. width:100%;
  3707. }
  3708. #u1005_text {
  3709. border-width:0px;
  3710. white-space:nowrap;
  3711. text-transform:none;
  3712. }
  3713. #u1006_div {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:103px;
  3719. height:25px;
  3720. background:inherit;
  3721. background-color:rgba(255, 255, 255, 1);
  3722. box-sizing:border-box;
  3723. border-width:1px;
  3724. border-style:solid;
  3725. border-color:rgba(2, 167, 240, 1);
  3726. border-radius:5px;
  3727. -moz-box-shadow:none;
  3728. -webkit-box-shadow:none;
  3729. box-shadow:none;
  3730. color:#02A7F0;
  3731. }
  3732. #u1006 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:599px;
  3736. top:888px;
  3737. width:103px;
  3738. height:25px;
  3739. display:flex;
  3740. color:#02A7F0;
  3741. }
  3742. #u1006 .text {
  3743. position:absolute;
  3744. align-self:center;
  3745. padding:2px 2px 2px 2px;
  3746. box-sizing:border-box;
  3747. width:100%;
  3748. }
  3749. #u1006_text {
  3750. border-width:0px;
  3751. word-wrap:break-word;
  3752. text-transform:none;
  3753. }
  3754. #u1007_div {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:103px;
  3760. height:25px;
  3761. background:inherit;
  3762. background-color:rgba(255, 255, 255, 1);
  3763. box-sizing:border-box;
  3764. border-width:1px;
  3765. border-style:solid;
  3766. border-color:rgba(2, 167, 240, 1);
  3767. border-radius:5px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. color:#02A7F0;
  3772. }
  3773. #u1007 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:599px;
  3777. top:1244px;
  3778. width:103px;
  3779. height:25px;
  3780. display:flex;
  3781. color:#02A7F0;
  3782. }
  3783. #u1007 .text {
  3784. position:absolute;
  3785. align-self:center;
  3786. padding:2px 2px 2px 2px;
  3787. box-sizing:border-box;
  3788. width:100%;
  3789. }
  3790. #u1007_text {
  3791. border-width:0px;
  3792. word-wrap:break-word;
  3793. text-transform:none;
  3794. }
  3795. #u1008_div {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:392px;
  3801. height:32px;
  3802. background:inherit;
  3803. background-color:rgba(255, 255, 255, 0);
  3804. border:none;
  3805. border-radius:0px;
  3806. -moz-box-shadow:none;
  3807. -webkit-box-shadow:none;
  3808. box-shadow:none;
  3809. font-size:28px;
  3810. color:#D9001B;
  3811. }
  3812. #u1008 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:141px;
  3816. top:1402px;
  3817. width:392px;
  3818. height:32px;
  3819. display:flex;
  3820. font-size:28px;
  3821. color:#D9001B;
  3822. }
  3823. #u1008 .text {
  3824. position:absolute;
  3825. align-self:flex-start;
  3826. padding:0px 0px 0px 0px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u1008_text {
  3831. border-width:0px;
  3832. white-space:nowrap;
  3833. text-transform:none;
  3834. }
  3835. #u1009_div {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:0px;
  3839. top:0px;
  3840. width:364px;
  3841. height:32px;
  3842. background:inherit;
  3843. background-color:rgba(255, 255, 255, 0);
  3844. border:none;
  3845. border-radius:0px;
  3846. -moz-box-shadow:none;
  3847. -webkit-box-shadow:none;
  3848. box-shadow:none;
  3849. font-size:28px;
  3850. color:#D9001B;
  3851. }
  3852. #u1009 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:2240px;
  3856. top:1386px;
  3857. width:364px;
  3858. height:32px;
  3859. display:flex;
  3860. font-size:28px;
  3861. color:#D9001B;
  3862. }
  3863. #u1009 .text {
  3864. position:absolute;
  3865. align-self:flex-start;
  3866. padding:0px 0px 0px 0px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u1009_text {
  3871. border-width:0px;
  3872. white-space:nowrap;
  3873. text-transform:none;
  3874. }
  3875. #u1010_div {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:372px;
  3881. height:74px;
  3882. background:inherit;
  3883. background-color:rgba(249, 236, 233, 0.2980392156862745);
  3884. border:none;
  3885. border-radius:0px;
  3886. -moz-box-shadow:none;
  3887. -webkit-box-shadow:none;
  3888. box-shadow:none;
  3889. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3890. font-weight:500;
  3891. font-style:normal;
  3892. font-size:16px;
  3893. color:#C43C1E;
  3894. text-align:left;
  3895. line-height:30px;
  3896. }
  3897. #u1010 {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:141px;
  3901. top:60px;
  3902. width:372px;
  3903. height:74px;
  3904. display:flex;
  3905. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3906. font-weight:500;
  3907. font-style:normal;
  3908. font-size:16px;
  3909. color:#C43C1E;
  3910. text-align:left;
  3911. line-height:30px;
  3912. }
  3913. #u1010 .text {
  3914. position:absolute;
  3915. align-self:flex-start;
  3916. padding:24px 24px 24px 24px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u1010_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. }