styles.css 73 KB

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