styles.css 61 KB

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