styles.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1297px;
  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. #u48639 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u48640 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u48640 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u48640_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u48640_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u48641_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u48641 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u48641 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u48641_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u48642 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u48643_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u48643 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u48643 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u48643_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u48644 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u48645 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u48645 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u48645_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u48645_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u48646 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u48646 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u48646_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u48646_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u48647 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u48648 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u48648 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u48648_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u48648_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u48649 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u48649 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u48649_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u48649_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u48650 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u48650 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u48650_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u48650_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u48651 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u48651 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u48651_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u48651_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u48652 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u48652 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u48652_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u48652_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u48653_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u48653 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u48653 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u48653_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u48654 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u48655 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u48655 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u48655_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u48655_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u48656_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u48656 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u48656 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u48656_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u48657 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u48658 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u48658 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u48658_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u48658_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u48659_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u48659 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u48659 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u48659_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u48660_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u48660 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u48660 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u48660_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u48661 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u48662 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u48662 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u48662_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u48662_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u48663_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u48663 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u48663 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u48663_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u48664 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u48665 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u48665 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u48665_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u48665_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u48666_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u48666 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u48666 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u48666_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u48667_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:735px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 1);
  811. border-top:0px;
  812. border-radius:25px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u48667 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:105px;
  823. width:375px;
  824. height:735px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u48667 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u48667_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u48668 {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:0px;
  848. height:0px;
  849. }
  850. #u48669 {
  851. border-width:0px;
  852. position:absolute;
  853. left:42px;
  854. top:79px;
  855. width:11px;
  856. height:18px;
  857. display:flex;
  858. transition:none;
  859. }
  860. #u48669 .text {
  861. position:absolute;
  862. align-self:center;
  863. padding:2px 2px 2px 2px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u48669_img {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:11px;
  873. height:18px;
  874. }
  875. #u48669_text {
  876. border-width:0px;
  877. word-wrap:break-word;
  878. text-transform:none;
  879. visibility:hidden;
  880. }
  881. #u48670_div {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:330px;
  887. height:40px;
  888. background:inherit;
  889. background-color:rgba(0, 137, 254, 1);
  890. border-radius:45px;
  891. filter:drop-shadow(none);
  892. transition:none;
  893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  894. font-weight:400;
  895. font-style:normal;
  896. font-size:14px;
  897. color:#FFFFFF;
  898. }
  899. #u48670 {
  900. border-width:0px;
  901. position:absolute;
  902. left:48px;
  903. top:789px;
  904. width:330px;
  905. height:40px;
  906. display:flex;
  907. transition:none;
  908. transform-origin:50% 50%;
  909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  910. font-weight:400;
  911. font-style:normal;
  912. font-size:14px;
  913. color:#FFFFFF;
  914. }
  915. #u48670 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 2px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u48670_text {
  923. border-width:0px;
  924. word-wrap:break-word;
  925. text-transform:none;
  926. }
  927. #u48671 {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. }
  935. #u48672_div {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:358px;
  941. height:180px;
  942. background:inherit;
  943. background-color:rgba(255, 255, 255, 1);
  944. border-radius:4px;
  945. filter:drop-shadow(none);
  946. transition:none;
  947. }
  948. #u48672 {
  949. border-width:0px;
  950. position:absolute;
  951. left:37px;
  952. top:190px;
  953. width:358px;
  954. height:180px;
  955. display:flex;
  956. transition:none;
  957. transform-origin:50% 50%;
  958. }
  959. #u48672 .text {
  960. position:absolute;
  961. align-self:center;
  962. padding:2px 2px 2px 2px;
  963. box-sizing:border-box;
  964. width:100%;
  965. }
  966. #u48672_text {
  967. border-width:0px;
  968. word-wrap:break-word;
  969. text-transform:none;
  970. visibility:hidden;
  971. }
  972. #u48673_div {
  973. border-width:0px;
  974. position:absolute;
  975. left:0px;
  976. top:0px;
  977. width:48px;
  978. height:50px;
  979. background:inherit;
  980. background-color:rgba(24, 144, 255, 1);
  981. border-radius:4px;
  982. filter:drop-shadow(none);
  983. transition:none;
  984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  985. font-weight:400;
  986. font-style:normal;
  987. color:#FFFFFF;
  988. }
  989. #u48673 {
  990. border-width:0px;
  991. position:absolute;
  992. left:53px;
  993. top:210px;
  994. width:48px;
  995. height:50px;
  996. display:flex;
  997. transition:none;
  998. transform-origin:50% 50%;
  999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1000. font-weight:400;
  1001. font-style:normal;
  1002. color:#FFFFFF;
  1003. }
  1004. #u48673 .text {
  1005. position:absolute;
  1006. align-self:center;
  1007. padding:2px 2px 2px 2px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u48673_text {
  1012. border-width:0px;
  1013. word-wrap:break-word;
  1014. text-transform:none;
  1015. }
  1016. #u48674_div {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:181px;
  1022. height:30px;
  1023. background:inherit;
  1024. background-color:rgba(255, 255, 255, 0);
  1025. border-left:0px;
  1026. border-top:0px;
  1027. border-right:0px;
  1028. border-radius:0px;
  1029. border-bottom-right-radius:0px;
  1030. border-bottom-left-radius:0px;
  1031. filter:drop-shadow(none);
  1032. transition:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. font-size:18px;
  1037. line-height:30px;
  1038. }
  1039. #u48674 {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:115px;
  1043. top:210px;
  1044. width:181px;
  1045. height:30px;
  1046. display:flex;
  1047. transition:none;
  1048. transform-origin:50% 50%;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. font-size:18px;
  1053. line-height:30px;
  1054. }
  1055. #u48674 .text {
  1056. position:absolute;
  1057. align-self:flex-start;
  1058. padding:0px 0px 0px 0px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u48674_text {
  1063. border-width:0px;
  1064. white-space:nowrap;
  1065. text-transform:none;
  1066. }
  1067. #u48675_div {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:0px;
  1071. top:0px;
  1072. width:181px;
  1073. height:60px;
  1074. background:inherit;
  1075. background-color:rgba(2, 167, 240, 0);
  1076. border-radius:4px;
  1077. filter:drop-shadow(none);
  1078. transition:none;
  1079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1080. font-weight:400;
  1081. font-style:normal;
  1082. font-size:12px;
  1083. color:#7F7F7F;
  1084. line-height:20px;
  1085. }
  1086. #u48675 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:119px;
  1090. top:269px;
  1091. width:181px;
  1092. height:60px;
  1093. display:flex;
  1094. transition:none;
  1095. transform-origin:50% 50%;
  1096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1097. font-weight:400;
  1098. font-style:normal;
  1099. font-size:12px;
  1100. color:#7F7F7F;
  1101. line-height:20px;
  1102. }
  1103. #u48675 .text {
  1104. position:absolute;
  1105. align-self:center;
  1106. padding:0px 0px 0px 0px;
  1107. box-sizing:border-box;
  1108. width:100%;
  1109. }
  1110. #u48675_text {
  1111. border-width:0px;
  1112. white-space:nowrap;
  1113. text-transform:none;
  1114. }
  1115. #u48676 {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:0px;
  1119. top:0px;
  1120. width:0px;
  1121. height:0px;
  1122. }
  1123. #u48677_div {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:0px;
  1127. top:0px;
  1128. width:60px;
  1129. height:20px;
  1130. background:inherit;
  1131. background-color:rgba(255, 255, 255, 1);
  1132. box-sizing:border-box;
  1133. border-width:1px;
  1134. border-style:solid;
  1135. border-color:rgba(215, 215, 215, 1);
  1136. border-radius:2px;
  1137. filter:drop-shadow(none);
  1138. transition:none;
  1139. }
  1140. #u48677 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:115px;
  1144. top:240px;
  1145. width:60px;
  1146. height:20px;
  1147. display:flex;
  1148. transition:none;
  1149. transform-origin:50% 50%;
  1150. }
  1151. #u48677 .text {
  1152. position:absolute;
  1153. align-self:center;
  1154. padding:2px 2px 2px 2px;
  1155. box-sizing:border-box;
  1156. width:100%;
  1157. }
  1158. #u48677_text {
  1159. border-width:0px;
  1160. word-wrap:break-word;
  1161. text-transform:none;
  1162. visibility:hidden;
  1163. }
  1164. #u48678 {
  1165. border-width:0px;
  1166. position:absolute;
  1167. left:0px;
  1168. top:0px;
  1169. width:0px;
  1170. height:0px;
  1171. }
  1172. #u48679_div {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:0px;
  1176. top:0px;
  1177. width:37px;
  1178. height:17px;
  1179. background:inherit;
  1180. background-color:rgba(255, 255, 255, 0);
  1181. border-left:0px;
  1182. border-top:0px;
  1183. border-right:0px;
  1184. border-radius:0px;
  1185. border-bottom-right-radius:0px;
  1186. border-bottom-left-radius:0px;
  1187. filter:drop-shadow(none);
  1188. transition:none;
  1189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1190. font-weight:400;
  1191. font-style:normal;
  1192. font-size:12px;
  1193. color:#7F7F7F;
  1194. }
  1195. #u48679 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:134px;
  1199. top:242px;
  1200. width:37px;
  1201. height:17px;
  1202. display:flex;
  1203. transition:none;
  1204. transform-origin:50% 50%;
  1205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1206. font-weight:400;
  1207. font-style:normal;
  1208. font-size:12px;
  1209. color:#7F7F7F;
  1210. }
  1211. #u48679 .text {
  1212. position:absolute;
  1213. align-self:flex-start;
  1214. padding:0px 0px 0px 0px;
  1215. box-sizing:border-box;
  1216. width:100%;
  1217. }
  1218. #u48679_text {
  1219. border-width:0px;
  1220. white-space:nowrap;
  1221. text-transform:none;
  1222. }
  1223. #u48680 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:0px;
  1229. height:0px;
  1230. }
  1231. #u48681 {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:119px;
  1235. top:244px;
  1236. width:12px;
  1237. height:12px;
  1238. display:flex;
  1239. transition:none;
  1240. }
  1241. #u48681 .text {
  1242. position:absolute;
  1243. align-self:center;
  1244. padding:2px 2px 2px 2px;
  1245. box-sizing:border-box;
  1246. width:100%;
  1247. }
  1248. #u48681_img {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:0px;
  1252. top:0px;
  1253. width:12px;
  1254. height:12px;
  1255. }
  1256. #u48681_text {
  1257. border-width:0px;
  1258. word-wrap:break-word;
  1259. text-transform:none;
  1260. visibility:hidden;
  1261. }
  1262. #u48682 {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:122px;
  1266. top:248px;
  1267. width:6px;
  1268. height:4px;
  1269. display:flex;
  1270. transition:none;
  1271. }
  1272. #u48682 .text {
  1273. position:absolute;
  1274. align-self:center;
  1275. padding:2px 2px 2px 2px;
  1276. box-sizing:border-box;
  1277. width:100%;
  1278. }
  1279. #u48682_img {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:6px;
  1285. height:4px;
  1286. }
  1287. #u48682_text {
  1288. border-width:0px;
  1289. word-wrap:break-word;
  1290. text-transform:none;
  1291. visibility:hidden;
  1292. }
  1293. #u48683_div {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:50px;
  1299. height:22px;
  1300. background:inherit;
  1301. background-color:rgba(255, 255, 255, 1);
  1302. box-sizing:border-box;
  1303. border-width:1px;
  1304. border-style:solid;
  1305. border-color:rgba(127, 127, 127, 1);
  1306. border-radius:40px;
  1307. filter:drop-shadow(none);
  1308. transition:none;
  1309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1310. font-weight:400;
  1311. font-style:normal;
  1312. font-size:11px;
  1313. }
  1314. #u48683 {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:335px;
  1318. top:338px;
  1319. width:50px;
  1320. height:22px;
  1321. display:flex;
  1322. transition:none;
  1323. transform-origin:50% 50%;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:11px;
  1328. }
  1329. #u48683 .text {
  1330. position:absolute;
  1331. align-self:center;
  1332. padding:2px 2px 2px 2px;
  1333. box-sizing:border-box;
  1334. width:100%;
  1335. }
  1336. #u48683_text {
  1337. border-width:0px;
  1338. word-wrap:break-word;
  1339. text-transform:none;
  1340. }
  1341. #u48684_div {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:50px;
  1347. height:22px;
  1348. background:inherit;
  1349. background-color:rgba(255, 255, 255, 1);
  1350. box-sizing:border-box;
  1351. border-width:1px;
  1352. border-style:solid;
  1353. border-color:rgba(127, 127, 127, 1);
  1354. border-radius:40px;
  1355. filter:drop-shadow(none);
  1356. transition:none;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. font-size:11px;
  1361. }
  1362. #u48684 {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:275px;
  1366. top:338px;
  1367. width:50px;
  1368. height:22px;
  1369. display:flex;
  1370. transition:none;
  1371. transform-origin:50% 50%;
  1372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1373. font-weight:400;
  1374. font-style:normal;
  1375. font-size:11px;
  1376. }
  1377. #u48684 .text {
  1378. position:absolute;
  1379. align-self:center;
  1380. padding:2px 2px 2px 2px;
  1381. box-sizing:border-box;
  1382. width:100%;
  1383. }
  1384. #u48684_text {
  1385. border-width:0px;
  1386. word-wrap:break-word;
  1387. text-transform:none;
  1388. }
  1389. #u48685 {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:453px;
  1393. top:0px;
  1394. width:433px;
  1395. height:865px;
  1396. }
  1397. #u48686 {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:433px;
  1403. height:865px;
  1404. display:flex;
  1405. transition:none;
  1406. }
  1407. #u48686 .text {
  1408. position:absolute;
  1409. align-self:center;
  1410. padding:2px 2px 2px 2px;
  1411. box-sizing:border-box;
  1412. width:100%;
  1413. }
  1414. #u48686_img {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:433px;
  1420. height:865px;
  1421. }
  1422. #u48686_text {
  1423. border-width:0px;
  1424. word-wrap:break-word;
  1425. text-transform:none;
  1426. visibility:hidden;
  1427. }
  1428. #u48687_div {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:0px;
  1432. top:0px;
  1433. width:375px;
  1434. height:40px;
  1435. background:inherit;
  1436. background-color:rgba(255, 255, 255, 1);
  1437. box-sizing:border-box;
  1438. border-width:1px;
  1439. border-style:solid;
  1440. border-color:rgba(215, 215, 215, 1);
  1441. border-left:0px;
  1442. border-top:0px;
  1443. border-right:0px;
  1444. border-radius:0px;
  1445. border-bottom-right-radius:0px;
  1446. border-bottom-left-radius:0px;
  1447. filter:drop-shadow(none);
  1448. transition:none;
  1449. }
  1450. #u48687 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:29px;
  1454. top:67px;
  1455. width:375px;
  1456. height:40px;
  1457. display:flex;
  1458. transition:none;
  1459. transform-origin:50% 50%;
  1460. }
  1461. #u48687 .text {
  1462. position:absolute;
  1463. align-self:center;
  1464. padding:2px 2px 2px 2px;
  1465. box-sizing:border-box;
  1466. width:100%;
  1467. }
  1468. #u48687_text {
  1469. border-width:0px;
  1470. word-wrap:break-word;
  1471. text-transform:none;
  1472. visibility:hidden;
  1473. }
  1474. #u48688 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:0px;
  1480. height:0px;
  1481. }
  1482. #u48689_div {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:88px;
  1488. height:32px;
  1489. background:inherit;
  1490. background-color:rgba(255, 255, 255, 1);
  1491. box-sizing:border-box;
  1492. border-width:1px;
  1493. border-style:solid;
  1494. border-color:rgba(242, 242, 242, 1);
  1495. border-radius:33px;
  1496. filter:drop-shadow(none);
  1497. transition:none;
  1498. }
  1499. #u48689 {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:309px;
  1503. top:71px;
  1504. width:88px;
  1505. height:32px;
  1506. display:flex;
  1507. transition:none;
  1508. transform-origin:50% 50%;
  1509. }
  1510. #u48689 .text {
  1511. position:absolute;
  1512. align-self:center;
  1513. padding:2px 2px 2px 2px;
  1514. box-sizing:border-box;
  1515. width:100%;
  1516. }
  1517. #u48689_text {
  1518. border-width:0px;
  1519. word-wrap:break-word;
  1520. text-transform:none;
  1521. visibility:hidden;
  1522. }
  1523. #u48690 {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:0px;
  1527. top:0px;
  1528. width:0px;
  1529. height:0px;
  1530. }
  1531. #u48691 {
  1532. border-width:0px;
  1533. position:absolute;
  1534. left:372px;
  1535. top:78px;
  1536. width:18px;
  1537. height:18px;
  1538. display:flex;
  1539. transition:none;
  1540. }
  1541. #u48691 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u48691_img {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:0px;
  1552. top:0px;
  1553. width:18px;
  1554. height:18px;
  1555. }
  1556. #u48691_text {
  1557. border-width:0px;
  1558. word-wrap:break-word;
  1559. text-transform:none;
  1560. visibility:hidden;
  1561. }
  1562. #u48692 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:378px;
  1566. top:84px;
  1567. width:6px;
  1568. height:6px;
  1569. display:flex;
  1570. transition:none;
  1571. }
  1572. #u48692 .text {
  1573. position:absolute;
  1574. align-self:center;
  1575. padding:2px 2px 2px 2px;
  1576. box-sizing:border-box;
  1577. width:100%;
  1578. }
  1579. #u48692_img {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:0px;
  1583. top:0px;
  1584. width:6px;
  1585. height:6px;
  1586. }
  1587. #u48692_text {
  1588. border-width:0px;
  1589. word-wrap:break-word;
  1590. text-transform:none;
  1591. visibility:hidden;
  1592. }
  1593. #u48693 {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:0px;
  1597. top:0px;
  1598. width:0px;
  1599. height:0px;
  1600. }
  1601. #u48694 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:323px;
  1605. top:85px;
  1606. width:5px;
  1607. height:5px;
  1608. display:flex;
  1609. transition:none;
  1610. }
  1611. #u48694 .text {
  1612. position:absolute;
  1613. align-self:center;
  1614. padding:2px 2px 2px 2px;
  1615. box-sizing:border-box;
  1616. width:100%;
  1617. }
  1618. #u48694_img {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:5px;
  1624. height:5px;
  1625. }
  1626. #u48694_text {
  1627. border-width:0px;
  1628. word-wrap:break-word;
  1629. text-transform:none;
  1630. visibility:hidden;
  1631. }
  1632. #u48695 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:339px;
  1636. top:85px;
  1637. width:5px;
  1638. height:5px;
  1639. display:flex;
  1640. transition:none;
  1641. }
  1642. #u48695 .text {
  1643. position:absolute;
  1644. align-self:center;
  1645. padding:2px 2px 2px 2px;
  1646. box-sizing:border-box;
  1647. width:100%;
  1648. }
  1649. #u48695_img {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:5px;
  1655. height:5px;
  1656. }
  1657. #u48695_text {
  1658. border-width:0px;
  1659. word-wrap:break-word;
  1660. text-transform:none;
  1661. visibility:hidden;
  1662. }
  1663. #u48696 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:330px;
  1667. top:84px;
  1668. width:7px;
  1669. height:7px;
  1670. display:flex;
  1671. transition:none;
  1672. }
  1673. #u48696 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 2px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u48696_img {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:0px;
  1684. top:0px;
  1685. width:7px;
  1686. height:7px;
  1687. }
  1688. #u48696_text {
  1689. border-width:0px;
  1690. word-wrap:break-word;
  1691. text-transform:none;
  1692. visibility:hidden;
  1693. }
  1694. #u48697 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:347px;
  1698. top:87px;
  1699. width:18px;
  1700. height:1px;
  1701. display:flex;
  1702. -webkit-transform:rotate(90deg);
  1703. -moz-transform:rotate(90deg);
  1704. -ms-transform:rotate(90deg);
  1705. transform:rotate(90deg);
  1706. transition:none;
  1707. }
  1708. #u48697 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u48697_img {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:19px;
  1721. height:2px;
  1722. }
  1723. #u48697_text {
  1724. border-width:0px;
  1725. word-wrap:break-word;
  1726. text-transform:none;
  1727. visibility:hidden;
  1728. }
  1729. #u48698 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:29px;
  1733. top:24px;
  1734. width:375px;
  1735. height:44px;
  1736. display:flex;
  1737. transition:none;
  1738. }
  1739. #u48698 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 2px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u48698_img {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:375px;
  1752. height:44px;
  1753. }
  1754. #u48698_text {
  1755. border-width:0px;
  1756. word-wrap:break-word;
  1757. text-transform:none;
  1758. visibility:hidden;
  1759. }
  1760. #u48699_div {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:375px;
  1766. height:50px;
  1767. background:inherit;
  1768. background-color:rgba(255, 255, 255, 1);
  1769. box-sizing:border-box;
  1770. border-width:1px;
  1771. border-style:solid;
  1772. border-color:rgba(242, 242, 242, 1);
  1773. border-radius:26px;
  1774. border-top-left-radius:0px;
  1775. border-top-right-radius:0px;
  1776. filter:drop-shadow(none);
  1777. transition:none;
  1778. }
  1779. #u48699 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:29px;
  1783. top:788px;
  1784. width:375px;
  1785. height:50px;
  1786. display:flex;
  1787. transition:none;
  1788. transform-origin:50% 50%;
  1789. }
  1790. #u48699 .text {
  1791. position:absolute;
  1792. align-self:center;
  1793. padding:2px 2px 2px 2px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u48699_text {
  1798. border-width:0px;
  1799. word-wrap:break-word;
  1800. text-transform:none;
  1801. visibility:hidden;
  1802. }
  1803. #u48700 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:0px;
  1809. height:0px;
  1810. }
  1811. #u48701 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:69px;
  1815. top:792px;
  1816. width:24px;
  1817. height:24px;
  1818. display:flex;
  1819. transition:none;
  1820. font-size:8px;
  1821. }
  1822. #u48701 .text {
  1823. position:absolute;
  1824. align-self:center;
  1825. padding:2px 2px 2px 2px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u48701_img {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:0px;
  1833. top:0px;
  1834. width:24px;
  1835. height:24px;
  1836. }
  1837. #u48701_text {
  1838. border-width:0px;
  1839. word-wrap:break-word;
  1840. text-transform:none;
  1841. }
  1842. #u48702_div {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:0px;
  1846. top:0px;
  1847. width:25px;
  1848. height:17px;
  1849. background:inherit;
  1850. background-color:rgba(255, 255, 255, 0);
  1851. border-radius:0px;
  1852. filter:drop-shadow(none);
  1853. transition:none;
  1854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:12px;
  1858. }
  1859. #u48702 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:69px;
  1863. top:817px;
  1864. width:25px;
  1865. height:17px;
  1866. display:flex;
  1867. transition:none;
  1868. transform-origin:50% 50%;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. }
  1874. #u48702 .text {
  1875. position:absolute;
  1876. align-self:flex-start;
  1877. padding:0px 0px 0px 0px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u48702_text {
  1882. border-width:0px;
  1883. white-space:nowrap;
  1884. text-transform:none;
  1885. }
  1886. #u48703 {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:0px;
  1892. height:0px;
  1893. }
  1894. #u48704 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:339px;
  1898. top:794px;
  1899. width:24px;
  1900. height:24px;
  1901. display:flex;
  1902. transition:none;
  1903. font-size:8px;
  1904. }
  1905. #u48704 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 2px 2px 2px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u48704_img {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:24px;
  1918. height:24px;
  1919. }
  1920. #u48704_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u48705_div {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:25px;
  1931. height:17px;
  1932. background:inherit;
  1933. background-color:rgba(255, 255, 255, 0);
  1934. border-radius:0px;
  1935. filter:drop-shadow(none);
  1936. transition:none;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. }
  1942. #u48705 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:339px;
  1946. top:819px;
  1947. width:25px;
  1948. height:17px;
  1949. display:flex;
  1950. transition:none;
  1951. transform-origin:50% 50%;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:12px;
  1956. }
  1957. #u48705 .text {
  1958. position:absolute;
  1959. align-self:flex-start;
  1960. padding:0px 0px 0px 0px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u48705_text {
  1965. border-width:0px;
  1966. white-space:nowrap;
  1967. text-transform:none;
  1968. }
  1969. #u48706_div {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:375px;
  1975. height:681px;
  1976. background:inherit;
  1977. background-color:rgba(242, 242, 242, 0.4627450980392157);
  1978. border-radius:0px;
  1979. filter:drop-shadow(none);
  1980. transition:none;
  1981. }
  1982. #u48706 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:29px;
  1986. top:107px;
  1987. width:375px;
  1988. height:681px;
  1989. display:flex;
  1990. transition:none;
  1991. transform-origin:50% 50%;
  1992. }
  1993. #u48706 .text {
  1994. position:absolute;
  1995. align-self:center;
  1996. padding:2px 2px 2px 2px;
  1997. box-sizing:border-box;
  1998. width:100%;
  1999. }
  2000. #u48706_text {
  2001. border-width:0px;
  2002. word-wrap:break-word;
  2003. text-transform:none;
  2004. visibility:hidden;
  2005. }
  2006. #u48707 {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:0px;
  2010. top:0px;
  2011. width:0px;
  2012. height:0px;
  2013. }
  2014. #u48708 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:251px;
  2018. top:792px;
  2019. width:24px;
  2020. height:24px;
  2021. display:flex;
  2022. transition:none;
  2023. font-size:8px;
  2024. }
  2025. #u48708 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 2px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u48708_img {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:24px;
  2038. height:24px;
  2039. }
  2040. #u48708_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. }
  2045. #u48709_div {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:37px;
  2051. height:17px;
  2052. background:inherit;
  2053. background-color:rgba(255, 255, 255, 0);
  2054. border-radius:0px;
  2055. filter:drop-shadow(none);
  2056. transition:none;
  2057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2058. font-weight:400;
  2059. font-style:normal;
  2060. font-size:12px;
  2061. }
  2062. #u48709 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:245px;
  2066. top:817px;
  2067. width:37px;
  2068. height:17px;
  2069. display:flex;
  2070. transition:none;
  2071. transform-origin:50% 50%;
  2072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:12px;
  2076. }
  2077. #u48709 .text {
  2078. position:absolute;
  2079. align-self:flex-start;
  2080. padding:0px 0px 0px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u48709_text {
  2085. border-width:0px;
  2086. white-space:nowrap;
  2087. text-transform:none;
  2088. }
  2089. #u48710 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:0px;
  2093. top:0px;
  2094. width:0px;
  2095. height:0px;
  2096. }
  2097. #u48711 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:157px;
  2101. top:792px;
  2102. width:24px;
  2103. height:24px;
  2104. display:flex;
  2105. transition:none;
  2106. font-size:8px;
  2107. }
  2108. #u48711 .text {
  2109. position:absolute;
  2110. align-self:center;
  2111. padding:2px 2px 2px 2px;
  2112. box-sizing:border-box;
  2113. width:100%;
  2114. }
  2115. #u48711_img {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:24px;
  2121. height:24px;
  2122. }
  2123. #u48711_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. }
  2128. #u48712_div {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:37px;
  2134. height:17px;
  2135. background:inherit;
  2136. background-color:rgba(255, 255, 255, 0);
  2137. border-radius:0px;
  2138. filter:drop-shadow(none);
  2139. transition:none;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:12px;
  2144. }
  2145. #u48712 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:151px;
  2149. top:817px;
  2150. width:37px;
  2151. height:17px;
  2152. display:flex;
  2153. transition:none;
  2154. transform-origin:50% 50%;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. }
  2160. #u48712 .text {
  2161. position:absolute;
  2162. align-self:flex-start;
  2163. padding:0px 0px 0px 0px;
  2164. box-sizing:border-box;
  2165. width:100%;
  2166. }
  2167. #u48712_text {
  2168. border-width:0px;
  2169. white-space:nowrap;
  2170. text-transform:none;
  2171. }
  2172. #u48713_div {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:375px;
  2178. height:735px;
  2179. background:inherit;
  2180. background-color:rgba(242, 242, 242, 1);
  2181. border-top:0px;
  2182. border-radius:25px;
  2183. border-top-left-radius:0px;
  2184. border-top-right-radius:0px;
  2185. filter:drop-shadow(none);
  2186. transition:none;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. }
  2191. #u48713 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:482px;
  2195. top:105px;
  2196. width:375px;
  2197. height:735px;
  2198. display:flex;
  2199. transition:none;
  2200. transform-origin:50% 50%;
  2201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2202. font-weight:400;
  2203. font-style:normal;
  2204. }
  2205. #u48713 .text {
  2206. position:absolute;
  2207. align-self:center;
  2208. padding:2px 2px 2px 2px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u48713_text {
  2213. border-width:0px;
  2214. word-wrap:break-word;
  2215. text-transform:none;
  2216. visibility:hidden;
  2217. }
  2218. #u48714_div {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:375px;
  2224. height:100px;
  2225. background:inherit;
  2226. background-color:rgba(255, 255, 255, 1);
  2227. border-radius:4px;
  2228. filter:drop-shadow(none);
  2229. transition:none;
  2230. }
  2231. #u48714 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:482px;
  2235. top:105px;
  2236. width:375px;
  2237. height:100px;
  2238. display:flex;
  2239. transition:none;
  2240. transform-origin:50% 50%;
  2241. }
  2242. #u48714 .text {
  2243. position:absolute;
  2244. align-self:center;
  2245. padding:2px 2px 2px 2px;
  2246. box-sizing:border-box;
  2247. width:100%;
  2248. }
  2249. #u48714_text {
  2250. border-width:0px;
  2251. word-wrap:break-word;
  2252. text-transform:none;
  2253. visibility:hidden;
  2254. }
  2255. #u48715 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:0px;
  2261. height:0px;
  2262. }
  2263. #u48716 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:499px;
  2267. top:79px;
  2268. width:11px;
  2269. height:18px;
  2270. display:flex;
  2271. transition:none;
  2272. }
  2273. #u48716 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 2px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u48716_img {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:11px;
  2286. height:18px;
  2287. }
  2288. #u48716_text {
  2289. border-width:0px;
  2290. word-wrap:break-word;
  2291. text-transform:none;
  2292. visibility:hidden;
  2293. }
  2294. #u48717_div {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:85px;
  2300. height:30px;
  2301. background:inherit;
  2302. background-color:rgba(255, 255, 255, 0);
  2303. border-left:0px;
  2304. border-top:0px;
  2305. border-right:0px;
  2306. border-radius:0px;
  2307. border-bottom-right-radius:0px;
  2308. border-bottom-left-radius:0px;
  2309. filter:drop-shadow(none);
  2310. transition:none;
  2311. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2312. font-weight:500;
  2313. font-style:normal;
  2314. font-size:14px;
  2315. line-height:30px;
  2316. }
  2317. #u48717 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:524px;
  2321. top:70px;
  2322. width:85px;
  2323. height:30px;
  2324. display:flex;
  2325. transition:none;
  2326. transform-origin:50% 50%;
  2327. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2328. font-weight:500;
  2329. font-style:normal;
  2330. font-size:14px;
  2331. line-height:30px;
  2332. }
  2333. #u48717 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:0px 0px 0px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u48717_text {
  2341. border-width:0px;
  2342. white-space:nowrap;
  2343. text-transform:none;
  2344. }
  2345. #u48718_div {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:191px;
  2351. height:70px;
  2352. background:inherit;
  2353. background-color:rgba(255, 255, 255, 0);
  2354. border-top:0px;
  2355. border-right:0px;
  2356. border-bottom:0px;
  2357. border-radius:0px;
  2358. border-top-left-radius:0px;
  2359. border-bottom-left-radius:0px;
  2360. filter:drop-shadow(none);
  2361. transition:none;
  2362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2363. font-style:normal;
  2364. line-height:30px;
  2365. }
  2366. #u48718 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:501px;
  2370. top:115px;
  2371. width:191px;
  2372. height:70px;
  2373. display:flex;
  2374. transition:none;
  2375. transform-origin:50% 50%;
  2376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2377. font-style:normal;
  2378. line-height:30px;
  2379. }
  2380. #u48718 .text {
  2381. position:absolute;
  2382. align-self:center;
  2383. padding:5px 10px 5px 0px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u48718_text {
  2388. border-width:0px;
  2389. white-space:nowrap;
  2390. text-transform:none;
  2391. }
  2392. #u48719_div {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:340px;
  2398. height:40px;
  2399. background:inherit;
  2400. background-color:rgba(255, 255, 255, 1);
  2401. border-radius:4px;
  2402. filter:drop-shadow(none);
  2403. transition:none;
  2404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2405. font-weight:400;
  2406. font-style:normal;
  2407. color:#D9001B;
  2408. }
  2409. #u48719 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:501px;
  2413. top:784px;
  2414. width:340px;
  2415. height:40px;
  2416. display:flex;
  2417. transition:none;
  2418. transform-origin:50% 50%;
  2419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2420. font-weight:400;
  2421. font-style:normal;
  2422. color:#D9001B;
  2423. }
  2424. #u48719 .text {
  2425. position:absolute;
  2426. align-self:center;
  2427. padding:2px 2px 2px 2px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u48719_text {
  2432. border-width:0px;
  2433. word-wrap:break-word;
  2434. text-transform:none;
  2435. }
  2436. #u48720 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:0px;
  2442. height:0px;
  2443. }
  2444. #u48721_div {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:346px;
  2450. height:220px;
  2451. background:inherit;
  2452. background-color:rgba(255, 255, 255, 1);
  2453. border-radius:9px;
  2454. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  2455. transition:none;
  2456. }
  2457. #u48721 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:501px;
  2461. top:530px;
  2462. width:346px;
  2463. height:220px;
  2464. display:flex;
  2465. transition:none;
  2466. transform-origin:50% 50%;
  2467. }
  2468. #u48721 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:2px 2px 2px 2px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u48721_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. visibility:hidden;
  2480. }
  2481. #u48722 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:501px;
  2485. top:681px;
  2486. width:346px;
  2487. height:1px;
  2488. display:flex;
  2489. transition:none;
  2490. }
  2491. #u48722 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 2px 2px 2px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u48722_img {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:347px;
  2504. height:2px;
  2505. }
  2506. #u48722_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. visibility:hidden;
  2511. }
  2512. #u48723 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:666px;
  2516. top:685px;
  2517. width:1px;
  2518. height:67px;
  2519. display:flex;
  2520. transition:none;
  2521. }
  2522. #u48723 .text {
  2523. position:absolute;
  2524. align-self:center;
  2525. padding:2px 2px 2px 2px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u48723_img {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:2px;
  2535. height:68px;
  2536. }
  2537. #u48723_text {
  2538. border-width:0px;
  2539. word-wrap:break-word;
  2540. text-transform:none;
  2541. visibility:hidden;
  2542. }
  2543. #u48724_div {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:105px;
  2549. height:30px;
  2550. background:inherit;
  2551. background-color:rgba(255, 255, 255, 0);
  2552. border-radius:0px;
  2553. filter:drop-shadow(none);
  2554. transition:none;
  2555. font-family:'ArialMT', 'Arial', sans-serif;
  2556. font-weight:400;
  2557. font-style:normal;
  2558. font-size:22px;
  2559. color:#0099FF;
  2560. text-align:center;
  2561. }
  2562. #u48724 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:534px;
  2566. top:707px;
  2567. width:105px;
  2568. height:30px;
  2569. display:flex;
  2570. transition:none;
  2571. transform-origin:50% 50%;
  2572. font-family:'ArialMT', 'Arial', sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:22px;
  2576. color:#0099FF;
  2577. text-align:center;
  2578. }
  2579. #u48724 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:0px 0px 0px 0px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u48724_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. }
  2591. #u48725_div {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:105px;
  2597. height:30px;
  2598. background:inherit;
  2599. background-color:rgba(255, 255, 255, 0);
  2600. border-radius:0px;
  2601. filter:drop-shadow(none);
  2602. transition:none;
  2603. font-family:'ArialMT', 'Arial', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:22px;
  2607. color:#0099FF;
  2608. text-align:center;
  2609. }
  2610. #u48725 {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:707px;
  2614. top:707px;
  2615. width:105px;
  2616. height:30px;
  2617. display:flex;
  2618. transition:none;
  2619. transform-origin:50% 50%;
  2620. font-family:'ArialMT', 'Arial', sans-serif;
  2621. font-weight:400;
  2622. font-style:normal;
  2623. font-size:22px;
  2624. color:#0099FF;
  2625. text-align:center;
  2626. }
  2627. #u48725 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:0px 0px 0px 0px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u48725_text {
  2635. border-width:0px;
  2636. word-wrap:break-word;
  2637. text-transform:none;
  2638. }
  2639. #u48726_div {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:245px;
  2645. height:40px;
  2646. background:inherit;
  2647. background-color:rgba(255, 255, 255, 0);
  2648. border-radius:0px;
  2649. filter:drop-shadow(none);
  2650. transition:none;
  2651. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2652. font-weight:650;
  2653. font-style:normal;
  2654. font-size:22px;
  2655. text-align:center;
  2656. }
  2657. #u48726 {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:563px;
  2661. top:546px;
  2662. width:245px;
  2663. height:40px;
  2664. display:flex;
  2665. transition:none;
  2666. transform-origin:50% 50%;
  2667. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2668. font-weight:650;
  2669. font-style:normal;
  2670. font-size:22px;
  2671. text-align:center;
  2672. }
  2673. #u48726 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:0px 0px 0px 0px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u48726_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. }
  2685. #u48727_div {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:300px;
  2691. height:50px;
  2692. background:inherit;
  2693. background-color:rgba(255, 255, 255, 0);
  2694. border-radius:0px;
  2695. filter:drop-shadow(none);
  2696. transition:none;
  2697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2698. font-weight:400;
  2699. font-style:normal;
  2700. font-size:18px;
  2701. text-align:center;
  2702. }
  2703. #u48727 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:524px;
  2707. top:601px;
  2708. width:300px;
  2709. height:50px;
  2710. display:flex;
  2711. transition:none;
  2712. transform-origin:50% 50%;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:18px;
  2717. text-align:center;
  2718. }
  2719. #u48727 .text {
  2720. position:absolute;
  2721. align-self:flex-start;
  2722. padding:0px 0px 0px 0px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u48727_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. }
  2731. #u48728 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:0px;
  2737. height:0px;
  2738. }
  2739. #u48729_div {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:375px;
  2745. height:90px;
  2746. background:inherit;
  2747. background-color:rgba(255, 255, 255, 1);
  2748. border-radius:4px;
  2749. filter:drop-shadow(none);
  2750. transition:none;
  2751. }
  2752. #u48729 {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:482px;
  2756. top:297px;
  2757. width:375px;
  2758. height:90px;
  2759. display:flex;
  2760. transition:none;
  2761. transform-origin:50% 50%;
  2762. }
  2763. #u48729 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 2px 2px 2px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u48729_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. visibility:hidden;
  2775. }
  2776. #u48730_div {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:329px;
  2782. height:70px;
  2783. background:inherit;
  2784. background-color:rgba(255, 255, 255, 0);
  2785. border-top:0px;
  2786. border-right:0px;
  2787. border-bottom:0px;
  2788. border-radius:0px;
  2789. border-top-left-radius:0px;
  2790. border-bottom-left-radius:0px;
  2791. filter:drop-shadow(none);
  2792. transition:none;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-style:normal;
  2795. line-height:30px;
  2796. }
  2797. #u48730 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:505px;
  2801. top:307px;
  2802. width:329px;
  2803. height:70px;
  2804. display:flex;
  2805. transition:none;
  2806. transform-origin:50% 50%;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-style:normal;
  2809. line-height:30px;
  2810. }
  2811. #u48730 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:5px 10px 5px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u48730_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. }
  2823. #u48731 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:838px;
  2827. top:353px;
  2828. width:7px;
  2829. height:11px;
  2830. display:flex;
  2831. -webkit-transform:rotate(180deg);
  2832. -moz-transform:rotate(180deg);
  2833. -ms-transform:rotate(180deg);
  2834. transform:rotate(180deg);
  2835. transition:none;
  2836. }
  2837. #u48731 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 2px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u48731_img {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:0px;
  2848. top:0px;
  2849. width:7px;
  2850. height:11px;
  2851. }
  2852. #u48731_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. visibility:hidden;
  2857. }
  2858. #u48732_div {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:355px;
  2864. height:75px;
  2865. background:inherit;
  2866. background-color:rgba(255, 255, 255, 0);
  2867. border-top:0px;
  2868. border-right:0px;
  2869. border-bottom:0px;
  2870. border-radius:0px;
  2871. border-top-left-radius:0px;
  2872. border-bottom-left-radius:0px;
  2873. filter:drop-shadow(none);
  2874. transition:none;
  2875. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2876. font-style:normal;
  2877. }
  2878. #u48732 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:40px;
  2882. top:105px;
  2883. width:355px;
  2884. height:75px;
  2885. display:flex;
  2886. transition:none;
  2887. transform-origin:50% 50%;
  2888. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2889. font-style:normal;
  2890. }
  2891. #u48732 .text {
  2892. position:absolute;
  2893. align-self:center;
  2894. padding:5px 10px 5px 0px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u48732_text {
  2899. border-width:0px;
  2900. word-wrap:break-word;
  2901. text-transform:none;
  2902. }
  2903. #u48733 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:0px;
  2909. height:0px;
  2910. }
  2911. #u48734_div {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:375px;
  2917. height:90px;
  2918. background:inherit;
  2919. background-color:rgba(255, 255, 255, 1);
  2920. border-radius:4px;
  2921. filter:drop-shadow(none);
  2922. transition:none;
  2923. }
  2924. #u48734 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:482px;
  2928. top:206px;
  2929. width:375px;
  2930. height:90px;
  2931. display:flex;
  2932. transition:none;
  2933. transform-origin:50% 50%;
  2934. }
  2935. #u48734 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 2px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u48734_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. visibility:hidden;
  2947. }
  2948. #u48735_div {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:329px;
  2954. height:70px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 0);
  2957. border-top:0px;
  2958. border-right:0px;
  2959. border-bottom:0px;
  2960. border-radius:0px;
  2961. border-top-left-radius:0px;
  2962. border-bottom-left-radius:0px;
  2963. filter:drop-shadow(none);
  2964. transition:none;
  2965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2966. font-style:normal;
  2967. line-height:30px;
  2968. }
  2969. #u48735 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:505px;
  2973. top:216px;
  2974. width:329px;
  2975. height:70px;
  2976. display:flex;
  2977. transition:none;
  2978. transform-origin:50% 50%;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-style:normal;
  2981. line-height:30px;
  2982. }
  2983. #u48735 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:5px 10px 5px 0px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u48735_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. }
  2995. #u48736 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:0px;
  3001. height:0px;
  3002. }
  3003. #u48737_div {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:375px;
  3009. height:90px;
  3010. background:inherit;
  3011. background-color:rgba(255, 255, 255, 1);
  3012. border-radius:4px;
  3013. filter:drop-shadow(none);
  3014. transition:none;
  3015. }
  3016. #u48737 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:482px;
  3020. top:397px;
  3021. width:375px;
  3022. height:90px;
  3023. display:flex;
  3024. transition:none;
  3025. transform-origin:50% 50%;
  3026. }
  3027. #u48737 .text {
  3028. position:absolute;
  3029. align-self:center;
  3030. padding:2px 2px 2px 2px;
  3031. box-sizing:border-box;
  3032. width:100%;
  3033. }
  3034. #u48737_text {
  3035. border-width:0px;
  3036. word-wrap:break-word;
  3037. text-transform:none;
  3038. visibility:hidden;
  3039. }
  3040. #u48738_div {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:329px;
  3046. height:70px;
  3047. background:inherit;
  3048. background-color:rgba(255, 255, 255, 0);
  3049. border-top:0px;
  3050. border-right:0px;
  3051. border-bottom:0px;
  3052. border-radius:0px;
  3053. border-top-left-radius:0px;
  3054. border-bottom-left-radius:0px;
  3055. filter:drop-shadow(none);
  3056. transition:none;
  3057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3058. font-style:normal;
  3059. line-height:30px;
  3060. }
  3061. #u48738 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:505px;
  3065. top:407px;
  3066. width:329px;
  3067. height:70px;
  3068. display:flex;
  3069. transition:none;
  3070. transform-origin:50% 50%;
  3071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3072. font-style:normal;
  3073. line-height:30px;
  3074. }
  3075. #u48738 .text {
  3076. position:absolute;
  3077. align-self:center;
  3078. padding:5px 10px 5px 0px;
  3079. box-sizing:border-box;
  3080. width:100%;
  3081. }
  3082. #u48738_text {
  3083. border-width:0px;
  3084. word-wrap:break-word;
  3085. text-transform:none;
  3086. }
  3087. #u48739 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:838px;
  3091. top:453px;
  3092. width:7px;
  3093. height:11px;
  3094. display:flex;
  3095. -webkit-transform:rotate(180deg);
  3096. -moz-transform:rotate(180deg);
  3097. -ms-transform:rotate(180deg);
  3098. transform:rotate(180deg);
  3099. transition:none;
  3100. }
  3101. #u48739 .text {
  3102. position:absolute;
  3103. align-self:center;
  3104. padding:2px 2px 2px 2px;
  3105. box-sizing:border-box;
  3106. width:100%;
  3107. }
  3108. #u48739_img {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:7px;
  3114. height:11px;
  3115. }
  3116. #u48739_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. visibility:hidden;
  3121. }
  3122. #u48740 {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:0px;
  3128. height:0px;
  3129. }
  3130. #u48741_div {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:375px;
  3136. height:282px;
  3137. background:inherit;
  3138. background-color:rgba(255, 255, 255, 0.996078431372549);
  3139. border-top:0px;
  3140. border-radius:28px;
  3141. border-top-left-radius:0px;
  3142. border-top-right-radius:0px;
  3143. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  3144. transition:none;
  3145. }
  3146. #u48741 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:922px;
  3150. top:558px;
  3151. width:375px;
  3152. height:282px;
  3153. display:flex;
  3154. transition:none;
  3155. transform-origin:50% 50%;
  3156. }
  3157. #u48741 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 2px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u48741_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u48742_div {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:109px;
  3176. height:30px;
  3177. background:inherit;
  3178. background-color:rgba(255, 255, 255, 0);
  3179. border-left:0px;
  3180. border-top:0px;
  3181. border-right:0px;
  3182. border-radius:0px;
  3183. border-bottom-right-radius:0px;
  3184. border-bottom-left-radius:0px;
  3185. filter:drop-shadow(none);
  3186. transition:none;
  3187. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3188. font-weight:500;
  3189. font-style:normal;
  3190. font-size:18px;
  3191. line-height:30px;
  3192. }
  3193. #u48742 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:942px;
  3197. top:571px;
  3198. width:109px;
  3199. height:30px;
  3200. display:flex;
  3201. transition:none;
  3202. transform-origin:50% 50%;
  3203. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3204. font-weight:500;
  3205. font-style:normal;
  3206. font-size:18px;
  3207. line-height:30px;
  3208. }
  3209. #u48742 .text {
  3210. position:absolute;
  3211. align-self:flex-start;
  3212. padding:0px 0px 0px 0px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u48742_text {
  3217. border-width:0px;
  3218. white-space:nowrap;
  3219. text-transform:none;
  3220. }
  3221. #u48743 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:0px;
  3227. height:0px;
  3228. }
  3229. #u48744_div {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:375px;
  3235. height:60px;
  3236. background:inherit;
  3237. background-color:rgba(255, 255, 255, 1);
  3238. box-sizing:border-box;
  3239. border-width:1px;
  3240. border-style:solid;
  3241. border-color:rgba(242, 242, 242, 1);
  3242. border-radius:20px;
  3243. border-top-left-radius:0px;
  3244. border-top-right-radius:0px;
  3245. filter:drop-shadow(none);
  3246. transition:none;
  3247. }
  3248. #u48744 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:922px;
  3252. top:780px;
  3253. width:375px;
  3254. height:60px;
  3255. display:flex;
  3256. transition:none;
  3257. transform-origin:50% 50%;
  3258. }
  3259. #u48744 .text {
  3260. position:absolute;
  3261. align-self:center;
  3262. padding:2px 2px 2px 2px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u48744_text {
  3267. border-width:0px;
  3268. word-wrap:break-word;
  3269. text-transform:none;
  3270. visibility:hidden;
  3271. }
  3272. #u48745_div {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:160px;
  3278. height:40px;
  3279. background:inherit;
  3280. background-color:rgba(0, 137, 254, 1);
  3281. border-radius:63px;
  3282. filter:drop-shadow(none);
  3283. transition:none;
  3284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:14px;
  3288. color:#FFFFFF;
  3289. }
  3290. #u48745 {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:1117px;
  3294. top:790px;
  3295. width:160px;
  3296. height:40px;
  3297. display:flex;
  3298. transition:none;
  3299. transform-origin:50% 50%;
  3300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3301. font-weight:400;
  3302. font-style:normal;
  3303. font-size:14px;
  3304. color:#FFFFFF;
  3305. }
  3306. #u48745 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:2px 2px 2px 2px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u48745_text {
  3314. border-width:0px;
  3315. word-wrap:break-word;
  3316. text-transform:none;
  3317. }
  3318. #u48746_div {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:160px;
  3324. height:40px;
  3325. background:inherit;
  3326. background-color:rgba(255, 255, 255, 1);
  3327. box-sizing:border-box;
  3328. border-width:1px;
  3329. border-style:solid;
  3330. border-color:rgba(121, 121, 121, 1);
  3331. border-radius:63px;
  3332. filter:drop-shadow(none);
  3333. transition:none;
  3334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:14px;
  3338. }
  3339. #u48746 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:942px;
  3343. top:790px;
  3344. width:160px;
  3345. height:40px;
  3346. display:flex;
  3347. transition:none;
  3348. transform-origin:50% 50%;
  3349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:14px;
  3353. }
  3354. #u48746 .text {
  3355. position:absolute;
  3356. align-self:center;
  3357. padding:2px 2px 2px 2px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u48746_text {
  3362. border-width:0px;
  3363. word-wrap:break-word;
  3364. text-transform:none;
  3365. }
  3366. #u48747_div {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:340px;
  3372. height:150px;
  3373. background:inherit;
  3374. background-color:rgba(255, 255, 255, 1);
  3375. box-sizing:border-box;
  3376. border-width:1px;
  3377. border-style:solid;
  3378. border-color:rgba(215, 215, 215, 1);
  3379. border-radius:4px;
  3380. filter:drop-shadow(none);
  3381. transition:none;
  3382. }
  3383. #u48747 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:942px;
  3387. top:611px;
  3388. width:340px;
  3389. height:150px;
  3390. display:flex;
  3391. transition:none;
  3392. transform-origin:50% 50%;
  3393. }
  3394. #u48747 .text {
  3395. position:absolute;
  3396. align-self:center;
  3397. padding:2px 2px 2px 2px;
  3398. box-sizing:border-box;
  3399. width:100%;
  3400. }
  3401. #u48747_text {
  3402. border-width:0px;
  3403. word-wrap:break-word;
  3404. text-transform:none;
  3405. visibility:hidden;
  3406. }
  3407. #u48748_div {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:71px;
  3413. height:30px;
  3414. background:inherit;
  3415. background-color:rgba(255, 255, 255, 0);
  3416. border-left:0px;
  3417. border-top:0px;
  3418. border-right:0px;
  3419. border-radius:0px;
  3420. border-bottom-right-radius:0px;
  3421. border-bottom-left-radius:0px;
  3422. filter:drop-shadow(none);
  3423. transition:none;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:14px;
  3428. color:#AAAAAA;
  3429. line-height:30px;
  3430. }
  3431. #u48748 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:951px;
  3435. top:619px;
  3436. width:71px;
  3437. height:30px;
  3438. display:flex;
  3439. transition:none;
  3440. transform-origin:50% 50%;
  3441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3442. font-weight:400;
  3443. font-style:normal;
  3444. font-size:14px;
  3445. color:#AAAAAA;
  3446. line-height:30px;
  3447. }
  3448. #u48748 .text {
  3449. position:absolute;
  3450. align-self:center;
  3451. padding:0px 0px 0px 0px;
  3452. box-sizing:border-box;
  3453. width:100%;
  3454. }
  3455. #u48748_text {
  3456. border-width:0px;
  3457. white-space:nowrap;
  3458. text-transform:none;
  3459. }