styles.css 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:868px;
  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. #u46882_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. #u46882 {
  44. border-width:0px;
  45. position:absolute;
  46. left:513px;
  47. top:707px;
  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. #u46882 .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. #u46882_text {
  68. border-width:0px;
  69. word-wrap:break-word;
  70. text-transform:none;
  71. }
  72. #u46883 {
  73. border-width:0px;
  74. position:absolute;
  75. left:0px;
  76. top:0px;
  77. width:0px;
  78. height:0px;
  79. }
  80. #u46884_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. #u46884 {
  97. border-width:0px;
  98. position:absolute;
  99. left:493px;
  100. top:43px;
  101. width:375px;
  102. height:282px;
  103. display:flex;
  104. transition:none;
  105. transform-origin:50% 50%;
  106. }
  107. #u46884 .text {
  108. position:absolute;
  109. align-self:center;
  110. padding:2px 2px 2px 2px;
  111. box-sizing:border-box;
  112. width:100%;
  113. }
  114. #u46884_text {
  115. border-width:0px;
  116. word-wrap:break-word;
  117. text-transform:none;
  118. visibility:hidden;
  119. }
  120. #u46885_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. #u46885 {
  144. border-width:0px;
  145. position:absolute;
  146. left:513px;
  147. top:56px;
  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. #u46885 .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. #u46885_text {
  167. border-width:0px;
  168. white-space:nowrap;
  169. text-transform:none;
  170. }
  171. #u46886 {
  172. border-width:0px;
  173. position:absolute;
  174. left:0px;
  175. top:0px;
  176. width:0px;
  177. height:0px;
  178. }
  179. #u46887_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. #u46887 {
  199. border-width:0px;
  200. position:absolute;
  201. left:493px;
  202. top:265px;
  203. width:375px;
  204. height:60px;
  205. display:flex;
  206. transition:none;
  207. transform-origin:50% 50%;
  208. }
  209. #u46887 .text {
  210. position:absolute;
  211. align-self:center;
  212. padding:2px 2px 2px 2px;
  213. box-sizing:border-box;
  214. width:100%;
  215. }
  216. #u46887_text {
  217. border-width:0px;
  218. word-wrap:break-word;
  219. text-transform:none;
  220. visibility:hidden;
  221. }
  222. #u46888_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. #u46888 {
  241. border-width:0px;
  242. position:absolute;
  243. left:688px;
  244. top:275px;
  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. #u46888 .text {
  257. position:absolute;
  258. align-self:center;
  259. padding:2px 2px 2px 2px;
  260. box-sizing:border-box;
  261. width:100%;
  262. }
  263. #u46888_text {
  264. border-width:0px;
  265. word-wrap:break-word;
  266. text-transform:none;
  267. }
  268. #u46889_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. #u46889 {
  290. border-width:0px;
  291. position:absolute;
  292. left:513px;
  293. top:275px;
  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. #u46889 .text {
  305. position:absolute;
  306. align-self:center;
  307. padding:2px 2px 2px 2px;
  308. box-sizing:border-box;
  309. width:100%;
  310. }
  311. #u46889_text {
  312. border-width:0px;
  313. word-wrap:break-word;
  314. text-transform:none;
  315. }
  316. #u46890_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. #u46890 {
  334. border-width:0px;
  335. position:absolute;
  336. left:513px;
  337. top:96px;
  338. width:340px;
  339. height:92px;
  340. display:flex;
  341. transition:none;
  342. transform-origin:50% 50%;
  343. }
  344. #u46890 .text {
  345. position:absolute;
  346. align-self:center;
  347. padding:2px 2px 2px 2px;
  348. box-sizing:border-box;
  349. width:100%;
  350. }
  351. #u46890_text {
  352. border-width:0px;
  353. word-wrap:break-word;
  354. text-transform:none;
  355. visibility:hidden;
  356. }
  357. #u46891_div {
  358. border-width:0px;
  359. position:absolute;
  360. left:0px;
  361. top:0px;
  362. width:99px;
  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. #u46891 {
  382. border-width:0px;
  383. position:absolute;
  384. left:522px;
  385. top:104px;
  386. width:99px;
  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. #u46891 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:0px 0px 0px 0px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u46891_text {
  406. border-width:0px;
  407. white-space:nowrap;
  408. text-transform:none;
  409. }
  410. #u46892 {
  411. border-width:0px;
  412. position:absolute;
  413. left:0px;
  414. top:0px;
  415. width:0px;
  416. height:0px;
  417. }
  418. #u46893_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. #u46893 {
  435. border-width:0px;
  436. position:absolute;
  437. left:493px;
  438. top:376px;
  439. width:375px;
  440. height:282px;
  441. display:flex;
  442. transition:none;
  443. transform-origin:50% 50%;
  444. }
  445. #u46893 .text {
  446. position:absolute;
  447. align-self:center;
  448. padding:2px 2px 2px 2px;
  449. box-sizing:border-box;
  450. width:100%;
  451. }
  452. #u46893_text {
  453. border-width:0px;
  454. word-wrap:break-word;
  455. text-transform:none;
  456. visibility:hidden;
  457. }
  458. #u46894_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. #u46894 {
  482. border-width:0px;
  483. position:absolute;
  484. left:513px;
  485. top:389px;
  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. #u46894 .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. #u46894_text {
  505. border-width:0px;
  506. white-space:nowrap;
  507. text-transform:none;
  508. }
  509. #u46895 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u46896_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. #u46896 {
  537. border-width:0px;
  538. position:absolute;
  539. left:493px;
  540. top:598px;
  541. width:375px;
  542. height:60px;
  543. display:flex;
  544. transition:none;
  545. transform-origin:50% 50%;
  546. }
  547. #u46896 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:2px 2px 2px 2px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u46896_text {
  555. border-width:0px;
  556. word-wrap:break-word;
  557. text-transform:none;
  558. visibility:hidden;
  559. }
  560. #u46897_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. #u46897 {
  579. border-width:0px;
  580. position:absolute;
  581. left:688px;
  582. top:608px;
  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. #u46897 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 2px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u46897_text {
  602. border-width:0px;
  603. word-wrap:break-word;
  604. text-transform:none;
  605. }
  606. #u46898_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. #u46898 {
  628. border-width:0px;
  629. position:absolute;
  630. left:513px;
  631. top:608px;
  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. #u46898 .text {
  643. position:absolute;
  644. align-self:center;
  645. padding:2px 2px 2px 2px;
  646. box-sizing:border-box;
  647. width:100%;
  648. }
  649. #u46898_text {
  650. border-width:0px;
  651. word-wrap:break-word;
  652. text-transform:none;
  653. }
  654. #u46899_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. #u46899 {
  672. border-width:0px;
  673. position:absolute;
  674. left:513px;
  675. top:429px;
  676. width:340px;
  677. height:92px;
  678. display:flex;
  679. transition:none;
  680. transform-origin:50% 50%;
  681. }
  682. #u46899 .text {
  683. position:absolute;
  684. align-self:center;
  685. padding:2px 2px 2px 2px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u46899_text {
  690. border-width:0px;
  691. word-wrap:break-word;
  692. text-transform:none;
  693. visibility:hidden;
  694. }
  695. #u46900_div {
  696. border-width:0px;
  697. position:absolute;
  698. left:0px;
  699. top:0px;
  700. width:99px;
  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. #u46900 {
  720. border-width:0px;
  721. position:absolute;
  722. left:522px;
  723. top:437px;
  724. width:99px;
  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. #u46900 .text {
  737. position:absolute;
  738. align-self:center;
  739. padding:0px 0px 0px 0px;
  740. box-sizing:border-box;
  741. width:100%;
  742. }
  743. #u46900_text {
  744. border-width:0px;
  745. white-space:nowrap;
  746. text-transform:none;
  747. }
  748. #u46901 {
  749. border-width:0px;
  750. position:absolute;
  751. left:0px;
  752. top:0px;
  753. width:433px;
  754. height:865px;
  755. }
  756. #u46902 {
  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. #u46902 .text {
  767. position:absolute;
  768. align-self:center;
  769. padding:2px 2px 2px 2px;
  770. box-sizing:border-box;
  771. width:100%;
  772. }
  773. #u46902_img {
  774. border-width:0px;
  775. position:absolute;
  776. left:0px;
  777. top:0px;
  778. width:433px;
  779. height:865px;
  780. }
  781. #u46902_text {
  782. border-width:0px;
  783. word-wrap:break-word;
  784. text-transform:none;
  785. visibility:hidden;
  786. }
  787. #u46903_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. #u46903 {
  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. #u46903 .text {
  821. position:absolute;
  822. align-self:center;
  823. padding:2px 2px 2px 2px;
  824. box-sizing:border-box;
  825. width:100%;
  826. }
  827. #u46903_text {
  828. border-width:0px;
  829. word-wrap:break-word;
  830. text-transform:none;
  831. visibility:hidden;
  832. }
  833. #u46904 {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:0px;
  839. height:0px;
  840. }
  841. #u46905_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. #u46905 {
  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. #u46905 .text {
  870. position:absolute;
  871. align-self:center;
  872. padding:2px 2px 2px 2px;
  873. box-sizing:border-box;
  874. width:100%;
  875. }
  876. #u46905_text {
  877. border-width:0px;
  878. word-wrap:break-word;
  879. text-transform:none;
  880. visibility:hidden;
  881. }
  882. #u46906 {
  883. border-width:0px;
  884. position:absolute;
  885. left:0px;
  886. top:0px;
  887. width:0px;
  888. height:0px;
  889. }
  890. #u46907 {
  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. #u46907 .text {
  901. position:absolute;
  902. align-self:center;
  903. padding:2px 2px 2px 2px;
  904. box-sizing:border-box;
  905. width:100%;
  906. }
  907. #u46907_img {
  908. border-width:0px;
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:18px;
  913. height:18px;
  914. }
  915. #u46907_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u46908 {
  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. #u46908 .text {
  932. position:absolute;
  933. align-self:center;
  934. padding:2px 2px 2px 2px;
  935. box-sizing:border-box;
  936. width:100%;
  937. }
  938. #u46908_img {
  939. border-width:0px;
  940. position:absolute;
  941. left:0px;
  942. top:0px;
  943. width:6px;
  944. height:6px;
  945. }
  946. #u46908_text {
  947. border-width:0px;
  948. word-wrap:break-word;
  949. text-transform:none;
  950. visibility:hidden;
  951. }
  952. #u46909 {
  953. border-width:0px;
  954. position:absolute;
  955. left:0px;
  956. top:0px;
  957. width:0px;
  958. height:0px;
  959. }
  960. #u46910 {
  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. #u46910 .text {
  971. position:absolute;
  972. align-self:center;
  973. padding:2px 2px 2px 2px;
  974. box-sizing:border-box;
  975. width:100%;
  976. }
  977. #u46910_img {
  978. border-width:0px;
  979. position:absolute;
  980. left:0px;
  981. top:0px;
  982. width:5px;
  983. height:5px;
  984. }
  985. #u46910_text {
  986. border-width:0px;
  987. word-wrap:break-word;
  988. text-transform:none;
  989. visibility:hidden;
  990. }
  991. #u46911 {
  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. #u46911 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:2px 2px 2px 2px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u46911_img {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:5px;
  1014. height:5px;
  1015. }
  1016. #u46911_text {
  1017. border-width:0px;
  1018. word-wrap:break-word;
  1019. text-transform:none;
  1020. visibility:hidden;
  1021. }
  1022. #u46912 {
  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. #u46912 .text {
  1033. position:absolute;
  1034. align-self:center;
  1035. padding:2px 2px 2px 2px;
  1036. box-sizing:border-box;
  1037. width:100%;
  1038. }
  1039. #u46912_img {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:0px;
  1043. top:0px;
  1044. width:7px;
  1045. height:7px;
  1046. }
  1047. #u46912_text {
  1048. border-width:0px;
  1049. word-wrap:break-word;
  1050. text-transform:none;
  1051. visibility:hidden;
  1052. }
  1053. #u46913 {
  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. #u46913 .text {
  1068. position:absolute;
  1069. align-self:center;
  1070. padding:2px 2px 2px 2px;
  1071. box-sizing:border-box;
  1072. width:100%;
  1073. }
  1074. #u46913_img {
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:0px;
  1078. top:0px;
  1079. width:19px;
  1080. height:2px;
  1081. }
  1082. #u46913_text {
  1083. border-width:0px;
  1084. word-wrap:break-word;
  1085. text-transform:none;
  1086. visibility:hidden;
  1087. }
  1088. #u46914 {
  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. #u46914 .text {
  1099. position:absolute;
  1100. align-self:center;
  1101. padding:2px 2px 2px 2px;
  1102. box-sizing:border-box;
  1103. width:100%;
  1104. }
  1105. #u46914_img {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:0px;
  1109. top:0px;
  1110. width:375px;
  1111. height:44px;
  1112. }
  1113. #u46914_text {
  1114. border-width:0px;
  1115. word-wrap:break-word;
  1116. text-transform:none;
  1117. visibility:hidden;
  1118. }
  1119. #u46915_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. #u46915 {
  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. #u46915 .text {
  1150. position:absolute;
  1151. align-self:center;
  1152. padding:2px 2px 2px 2px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u46915_text {
  1157. border-width:0px;
  1158. word-wrap:break-word;
  1159. text-transform:none;
  1160. visibility:hidden;
  1161. }
  1162. #u46916 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:0px;
  1168. height:0px;
  1169. }
  1170. #u46917 {
  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. #u46917 .text {
  1182. position:absolute;
  1183. align-self:center;
  1184. padding:2px 2px 2px 2px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u46917_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:24px;
  1194. height:24px;
  1195. }
  1196. #u46917_text {
  1197. border-width:0px;
  1198. word-wrap:break-word;
  1199. text-transform:none;
  1200. }
  1201. #u46918_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. #u46918 {
  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. #u46918 .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. #u46918_text {
  1241. border-width:0px;
  1242. white-space:nowrap;
  1243. text-transform:none;
  1244. }
  1245. #u46919 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u46920 {
  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. #u46920 .text {
  1265. position:absolute;
  1266. align-self:center;
  1267. padding:2px 2px 2px 2px;
  1268. box-sizing:border-box;
  1269. width:100%;
  1270. }
  1271. #u46920_img {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:24px;
  1277. height:24px;
  1278. }
  1279. #u46920_text {
  1280. border-width:0px;
  1281. word-wrap:break-word;
  1282. text-transform:none;
  1283. }
  1284. #u46921_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. #u46921 {
  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. #u46921 .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. #u46921_text {
  1324. border-width:0px;
  1325. white-space:nowrap;
  1326. text-transform:none;
  1327. }
  1328. #u46922_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. #u46922 {
  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. #u46922 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u46922_text {
  1360. border-width:0px;
  1361. word-wrap:break-word;
  1362. text-transform:none;
  1363. visibility:hidden;
  1364. }
  1365. #u46923 {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:0px;
  1369. top:0px;
  1370. width:0px;
  1371. height:0px;
  1372. }
  1373. #u46924 {
  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. #u46924 .text {
  1385. position:absolute;
  1386. align-self:center;
  1387. padding:2px 2px 2px 2px;
  1388. box-sizing:border-box;
  1389. width:100%;
  1390. }
  1391. #u46924_img {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:0px;
  1395. top:0px;
  1396. width:24px;
  1397. height:24px;
  1398. }
  1399. #u46924_text {
  1400. border-width:0px;
  1401. word-wrap:break-word;
  1402. text-transform:none;
  1403. }
  1404. #u46925_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. #u46925 {
  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. #u46925 .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. #u46925_text {
  1444. border-width:0px;
  1445. white-space:nowrap;
  1446. text-transform:none;
  1447. }
  1448. #u46926 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:0px;
  1454. height:0px;
  1455. }
  1456. #u46927 {
  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. #u46927 .text {
  1468. position:absolute;
  1469. align-self:center;
  1470. padding:2px 2px 2px 2px;
  1471. box-sizing:border-box;
  1472. width:100%;
  1473. }
  1474. #u46927_img {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:24px;
  1480. height:24px;
  1481. }
  1482. #u46927_text {
  1483. border-width:0px;
  1484. word-wrap:break-word;
  1485. text-transform:none;
  1486. }
  1487. #u46928_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. #u46928 {
  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. #u46928 .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. #u46928_text {
  1527. border-width:0px;
  1528. white-space:nowrap;
  1529. text-transform:none;
  1530. }
  1531. #u46929_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. #u46929 {
  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. #u46929 .text {
  1559. position:absolute;
  1560. align-self:center;
  1561. padding:2px 2px 2px 2px;
  1562. box-sizing:border-box;
  1563. width:100%;
  1564. }
  1565. #u46929_text {
  1566. border-width:0px;
  1567. word-wrap:break-word;
  1568. text-transform:none;
  1569. visibility:hidden;
  1570. }
  1571. #u46930_div {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:0px;
  1575. top:0px;
  1576. width:375px;
  1577. height:735px;
  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. #u46930 {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:29px;
  1591. top:105px;
  1592. width:375px;
  1593. height:735px;
  1594. display:flex;
  1595. transition:none;
  1596. transform-origin:50% 50%;
  1597. }
  1598. #u46930 .text {
  1599. position:absolute;
  1600. align-self:center;
  1601. padding:2px 2px 2px 2px;
  1602. box-sizing:border-box;
  1603. width:100%;
  1604. }
  1605. #u46930_text {
  1606. border-width:0px;
  1607. word-wrap:break-word;
  1608. text-transform:none;
  1609. visibility:hidden;
  1610. }
  1611. #u46931 {
  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. #u46931 .text {
  1622. position:absolute;
  1623. align-self:center;
  1624. padding:2px 2px 2px 2px;
  1625. box-sizing:border-box;
  1626. width:100%;
  1627. }
  1628. #u46931_img {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:11px;
  1634. height:18px;
  1635. }
  1636. #u46931_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u46932_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:73px;
  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. #u46932 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:71px;
  1669. top:73px;
  1670. width:73px;
  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. #u46932 .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. #u46932_text {
  1689. border-width:0px;
  1690. white-space:nowrap;
  1691. text-transform:none;
  1692. }
  1693. #u46933 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:0px;
  1697. top:0px;
  1698. width:0px;
  1699. height:0px;
  1700. }
  1701. #u46934_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. #u46934 {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:29px;
  1724. top:780px;
  1725. width:375px;
  1726. height:60px;
  1727. display:flex;
  1728. transition:none;
  1729. transform-origin:50% 50%;
  1730. }
  1731. #u46934 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 2px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u46934_text {
  1739. border-width:0px;
  1740. word-wrap:break-word;
  1741. text-transform:none;
  1742. visibility:hidden;
  1743. }
  1744. #u46935_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. #u46935 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:224px;
  1766. top:790px;
  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. #u46935 .text {
  1779. position:absolute;
  1780. align-self:center;
  1781. padding:2px 2px 2px 2px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u46935_text {
  1786. border-width:0px;
  1787. word-wrap:break-word;
  1788. text-transform:none;
  1789. }
  1790. #u46936_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. #u46936 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:49px;
  1815. top:790px;
  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. #u46936 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:2px 2px 2px 2px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u46936_text {
  1834. border-width:0px;
  1835. word-wrap:break-word;
  1836. text-transform:none;
  1837. }
  1838. #u46937_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:374px;
  1844. height:300px;
  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. #u46937 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:29px;
  1855. top:105px;
  1856. width:374px;
  1857. height:300px;
  1858. display:flex;
  1859. transition:none;
  1860. transform-origin:50% 50%;
  1861. }
  1862. #u46937 .text {
  1863. position:absolute;
  1864. align-self:center;
  1865. padding:2px 2px 2px 2px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u46937_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. visibility:hidden;
  1874. }
  1875. #u46938_div {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:124px;
  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:18px;
  1896. line-height:30px;
  1897. }
  1898. #u46938 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:61px;
  1902. top:120px;
  1903. width:124px;
  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:18px;
  1912. line-height:30px;
  1913. }
  1914. #u46938 .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. #u46938_text {
  1922. border-width:0px;
  1923. white-space:nowrap;
  1924. text-transform:none;
  1925. }
  1926. #u46939_div {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:113px;
  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. #u46939 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:61px;
  1953. top:150px;
  1954. width:113px;
  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. #u46939 .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. #u46939_text {
  1973. border-width:0px;
  1974. white-space:nowrap;
  1975. text-transform:none;
  1976. }
  1977. #u46940_div {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:57px;
  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. #u46940 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:139px;
  2004. top:190px;
  2005. width:57px;
  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. #u46940 .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. #u46940_text {
  2024. border-width:0px;
  2025. white-space:nowrap;
  2026. text-transform:none;
  2027. }
  2028. #u46941_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. #u46941 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:61px;
  2055. top:190px;
  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. #u46941 .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. #u46941_text {
  2075. border-width:0px;
  2076. white-space:nowrap;
  2077. text-transform:none;
  2078. }
  2079. #u46942_div {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:29px;
  2085. height:30px;
  2086. background:inherit;
  2087. background-color:rgba(255, 255, 255, 0);
  2088. border-left:0px;
  2089. border-top:0px;
  2090. border-right:0px;
  2091. border-radius:0px;
  2092. border-bottom-right-radius:0px;
  2093. border-bottom-left-radius:0px;
  2094. filter:drop-shadow(none);
  2095. transition:none;
  2096. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2097. font-weight:500;
  2098. font-style:normal;
  2099. font-size:14px;
  2100. line-height:30px;
  2101. }
  2102. #u46942 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:139px;
  2106. top:220px;
  2107. width:29px;
  2108. height:30px;
  2109. display:flex;
  2110. transition:none;
  2111. transform-origin:50% 50%;
  2112. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2113. font-weight:500;
  2114. font-style:normal;
  2115. font-size:14px;
  2116. line-height:30px;
  2117. }
  2118. #u46942 .text {
  2119. position:absolute;
  2120. align-self:flex-start;
  2121. padding:0px 0px 0px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u46942_text {
  2126. border-width:0px;
  2127. white-space:nowrap;
  2128. text-transform:none;
  2129. }
  2130. #u46943_div {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:71px;
  2136. height:30px;
  2137. background:inherit;
  2138. background-color:rgba(255, 255, 255, 0);
  2139. border-left:0px;
  2140. border-top:0px;
  2141. border-right:0px;
  2142. border-radius:0px;
  2143. border-bottom-right-radius:0px;
  2144. border-bottom-left-radius:0px;
  2145. filter:drop-shadow(none);
  2146. transition:none;
  2147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2148. font-weight:400;
  2149. font-style:normal;
  2150. font-size:14px;
  2151. line-height:30px;
  2152. }
  2153. #u46943 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:61px;
  2157. top:220px;
  2158. width:71px;
  2159. height:30px;
  2160. display:flex;
  2161. transition:none;
  2162. transform-origin:50% 50%;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:14px;
  2167. line-height:30px;
  2168. }
  2169. #u46943 .text {
  2170. position:absolute;
  2171. align-self:flex-start;
  2172. padding:0px 0px 0px 0px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u46943_text {
  2177. border-width:0px;
  2178. white-space:nowrap;
  2179. text-transform:none;
  2180. }
  2181. #u46944_div {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:91px;
  2187. height:30px;
  2188. background:inherit;
  2189. background-color:rgba(255, 255, 255, 0);
  2190. border-left:0px;
  2191. border-top:0px;
  2192. border-right:0px;
  2193. border-radius:0px;
  2194. border-bottom-right-radius:0px;
  2195. border-bottom-left-radius:0px;
  2196. filter:drop-shadow(none);
  2197. transition:none;
  2198. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2199. font-weight:500;
  2200. font-style:normal;
  2201. font-size:14px;
  2202. line-height:30px;
  2203. }
  2204. #u46944 {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:139px;
  2208. top:250px;
  2209. width:91px;
  2210. height:30px;
  2211. display:flex;
  2212. transition:none;
  2213. transform-origin:50% 50%;
  2214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2215. font-weight:500;
  2216. font-style:normal;
  2217. font-size:14px;
  2218. line-height:30px;
  2219. }
  2220. #u46944 .text {
  2221. position:absolute;
  2222. align-self:flex-start;
  2223. padding:0px 0px 0px 0px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u46944_text {
  2228. border-width:0px;
  2229. white-space:nowrap;
  2230. text-transform:none;
  2231. }
  2232. #u46945_div {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:71px;
  2238. height:30px;
  2239. background:inherit;
  2240. background-color:rgba(255, 255, 255, 0);
  2241. border-left:0px;
  2242. border-top:0px;
  2243. border-right:0px;
  2244. border-radius:0px;
  2245. border-bottom-right-radius:0px;
  2246. border-bottom-left-radius:0px;
  2247. filter:drop-shadow(none);
  2248. transition:none;
  2249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:14px;
  2253. line-height:30px;
  2254. }
  2255. #u46945 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:61px;
  2259. top:250px;
  2260. width:71px;
  2261. height:30px;
  2262. display:flex;
  2263. transition:none;
  2264. transform-origin:50% 50%;
  2265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:14px;
  2269. line-height:30px;
  2270. }
  2271. #u46945 .text {
  2272. position:absolute;
  2273. align-self:flex-start;
  2274. padding:0px 0px 0px 0px;
  2275. box-sizing:border-box;
  2276. width:100%;
  2277. }
  2278. #u46945_text {
  2279. border-width:0px;
  2280. white-space:nowrap;
  2281. text-transform:none;
  2282. }
  2283. #u46946_div {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:137px;
  2289. height:30px;
  2290. background:inherit;
  2291. background-color:rgba(255, 255, 255, 0);
  2292. border-left:0px;
  2293. border-top:0px;
  2294. border-right:0px;
  2295. border-radius:0px;
  2296. border-bottom-right-radius:0px;
  2297. border-bottom-left-radius:0px;
  2298. filter:drop-shadow(none);
  2299. transition:none;
  2300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2301. font-weight:500;
  2302. font-style:normal;
  2303. font-size:14px;
  2304. line-height:30px;
  2305. }
  2306. #u46946 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:139px;
  2310. top:280px;
  2311. width:137px;
  2312. height:30px;
  2313. display:flex;
  2314. transition:none;
  2315. transform-origin:50% 50%;
  2316. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2317. font-weight:500;
  2318. font-style:normal;
  2319. font-size:14px;
  2320. line-height:30px;
  2321. }
  2322. #u46946 .text {
  2323. position:absolute;
  2324. align-self:flex-start;
  2325. padding:0px 0px 0px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u46946_text {
  2330. border-width:0px;
  2331. white-space:nowrap;
  2332. text-transform:none;
  2333. }
  2334. #u46947_div {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:71px;
  2340. height:30px;
  2341. background:inherit;
  2342. background-color:rgba(255, 255, 255, 0);
  2343. border-left:0px;
  2344. border-top:0px;
  2345. border-right:0px;
  2346. border-radius:0px;
  2347. border-bottom-right-radius:0px;
  2348. border-bottom-left-radius:0px;
  2349. filter:drop-shadow(none);
  2350. transition:none;
  2351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2352. font-weight:400;
  2353. font-style:normal;
  2354. font-size:14px;
  2355. line-height:30px;
  2356. }
  2357. #u46947 {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:61px;
  2361. top:280px;
  2362. width:71px;
  2363. height:30px;
  2364. display:flex;
  2365. transition:none;
  2366. transform-origin:50% 50%;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:14px;
  2371. line-height:30px;
  2372. }
  2373. #u46947 .text {
  2374. position:absolute;
  2375. align-self:flex-start;
  2376. padding:0px 0px 0px 0px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u46947_text {
  2381. border-width:0px;
  2382. white-space:nowrap;
  2383. text-transform:none;
  2384. }
  2385. #u46948_div {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:27px;
  2391. height:14px;
  2392. background:inherit;
  2393. background-color:rgba(24, 144, 255, 1);
  2394. border-radius:14px;
  2395. filter:drop-shadow(none);
  2396. transition:none;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:10px;
  2401. color:#FFFFFF;
  2402. text-align:center;
  2403. }
  2404. #u46948 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:193px;
  2408. top:128px;
  2409. width:27px;
  2410. height:14px;
  2411. display:flex;
  2412. transition:none;
  2413. transform-origin:50% 50%;
  2414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2415. font-weight:400;
  2416. font-style:normal;
  2417. font-size:10px;
  2418. color:#FFFFFF;
  2419. text-align:center;
  2420. }
  2421. #u46948 .text {
  2422. position:absolute;
  2423. align-self:flex-start;
  2424. padding:0px 0px 0px 0px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u46948_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. }
  2433. #u46949_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:137px;
  2439. height:30px;
  2440. background:inherit;
  2441. background-color:rgba(255, 255, 255, 0);
  2442. border-left:0px;
  2443. border-top:0px;
  2444. border-right:0px;
  2445. border-radius:0px;
  2446. border-bottom-right-radius:0px;
  2447. border-bottom-left-radius:0px;
  2448. filter:drop-shadow(none);
  2449. transition:none;
  2450. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2451. font-weight:500;
  2452. font-style:normal;
  2453. font-size:14px;
  2454. line-height:30px;
  2455. }
  2456. #u46949 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:139px;
  2460. top:310px;
  2461. width:137px;
  2462. height:30px;
  2463. display:flex;
  2464. transition:none;
  2465. transform-origin:50% 50%;
  2466. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2467. font-weight:500;
  2468. font-style:normal;
  2469. font-size:14px;
  2470. line-height:30px;
  2471. }
  2472. #u46949 .text {
  2473. position:absolute;
  2474. align-self:flex-start;
  2475. padding:0px 0px 0px 0px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u46949_text {
  2480. border-width:0px;
  2481. white-space:nowrap;
  2482. text-transform:none;
  2483. }
  2484. #u46950_div {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:0px;
  2488. top:0px;
  2489. width:71px;
  2490. height:30px;
  2491. background:inherit;
  2492. background-color:rgba(255, 255, 255, 0);
  2493. border-left:0px;
  2494. border-top:0px;
  2495. border-right:0px;
  2496. border-radius:0px;
  2497. border-bottom-right-radius:0px;
  2498. border-bottom-left-radius:0px;
  2499. filter:drop-shadow(none);
  2500. transition:none;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:14px;
  2505. line-height:30px;
  2506. }
  2507. #u46950 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:61px;
  2511. top:310px;
  2512. width:71px;
  2513. height:30px;
  2514. display:flex;
  2515. transition:none;
  2516. transform-origin:50% 50%;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:14px;
  2521. line-height:30px;
  2522. }
  2523. #u46950 .text {
  2524. position:absolute;
  2525. align-self:flex-start;
  2526. padding:0px 0px 0px 0px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u46950_text {
  2531. border-width:0px;
  2532. white-space:nowrap;
  2533. text-transform:none;
  2534. }
  2535. #u46951_div {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:137px;
  2541. height:30px;
  2542. background:inherit;
  2543. background-color:rgba(255, 255, 255, 0);
  2544. border-left:0px;
  2545. border-top:0px;
  2546. border-right:0px;
  2547. border-radius:0px;
  2548. border-bottom-right-radius:0px;
  2549. border-bottom-left-radius:0px;
  2550. filter:drop-shadow(none);
  2551. transition:none;
  2552. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2553. font-weight:500;
  2554. font-style:normal;
  2555. font-size:14px;
  2556. line-height:30px;
  2557. }
  2558. #u46951 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:139px;
  2562. top:340px;
  2563. width:137px;
  2564. height:30px;
  2565. display:flex;
  2566. transition:none;
  2567. transform-origin:50% 50%;
  2568. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2569. font-weight:500;
  2570. font-style:normal;
  2571. font-size:14px;
  2572. line-height:30px;
  2573. }
  2574. #u46951 .text {
  2575. position:absolute;
  2576. align-self:flex-start;
  2577. padding:0px 0px 0px 0px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u46951_text {
  2582. border-width:0px;
  2583. white-space:nowrap;
  2584. text-transform:none;
  2585. }
  2586. #u46952_div {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:71px;
  2592. height:30px;
  2593. background:inherit;
  2594. background-color:rgba(255, 255, 255, 0);
  2595. border-left:0px;
  2596. border-top:0px;
  2597. border-right:0px;
  2598. border-radius:0px;
  2599. border-bottom-right-radius:0px;
  2600. border-bottom-left-radius:0px;
  2601. filter:drop-shadow(none);
  2602. transition:none;
  2603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:14px;
  2607. line-height:30px;
  2608. }
  2609. #u46952 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:61px;
  2613. top:340px;
  2614. width:71px;
  2615. height:30px;
  2616. display:flex;
  2617. transition:none;
  2618. transform-origin:50% 50%;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:14px;
  2623. line-height:30px;
  2624. }
  2625. #u46952 .text {
  2626. position:absolute;
  2627. align-self:flex-start;
  2628. padding:0px 0px 0px 0px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u46952_text {
  2633. border-width:0px;
  2634. white-space:nowrap;
  2635. text-transform:none;
  2636. }
  2637. #u46953_div {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:137px;
  2643. height:30px;
  2644. background:inherit;
  2645. background-color:rgba(255, 255, 255, 0);
  2646. border-left:0px;
  2647. border-top:0px;
  2648. border-right:0px;
  2649. border-radius:0px;
  2650. border-bottom-right-radius:0px;
  2651. border-bottom-left-radius:0px;
  2652. filter:drop-shadow(none);
  2653. transition:none;
  2654. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2655. font-weight:500;
  2656. font-style:normal;
  2657. font-size:14px;
  2658. line-height:30px;
  2659. }
  2660. #u46953 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:139px;
  2664. top:370px;
  2665. width:137px;
  2666. height:30px;
  2667. display:flex;
  2668. transition:none;
  2669. transform-origin:50% 50%;
  2670. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2671. font-weight:500;
  2672. font-style:normal;
  2673. font-size:14px;
  2674. line-height:30px;
  2675. }
  2676. #u46953 .text {
  2677. position:absolute;
  2678. align-self:flex-start;
  2679. padding:0px 0px 0px 0px;
  2680. box-sizing:border-box;
  2681. width:100%;
  2682. }
  2683. #u46953_text {
  2684. border-width:0px;
  2685. white-space:nowrap;
  2686. text-transform:none;
  2687. }
  2688. #u46954_div {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:71px;
  2694. height:30px;
  2695. background:inherit;
  2696. background-color:rgba(255, 255, 255, 0);
  2697. border-left:0px;
  2698. border-top:0px;
  2699. border-right:0px;
  2700. border-radius:0px;
  2701. border-bottom-right-radius:0px;
  2702. border-bottom-left-radius:0px;
  2703. filter:drop-shadow(none);
  2704. transition:none;
  2705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2706. font-weight:400;
  2707. font-style:normal;
  2708. font-size:14px;
  2709. line-height:30px;
  2710. }
  2711. #u46954 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:61px;
  2715. top:370px;
  2716. width:71px;
  2717. height:30px;
  2718. display:flex;
  2719. transition:none;
  2720. transform-origin:50% 50%;
  2721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2722. font-weight:400;
  2723. font-style:normal;
  2724. font-size:14px;
  2725. line-height:30px;
  2726. }
  2727. #u46954 .text {
  2728. position:absolute;
  2729. align-self:flex-start;
  2730. padding:0px 0px 0px 0px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u46954_text {
  2735. border-width:0px;
  2736. white-space:nowrap;
  2737. text-transform:none;
  2738. }
  2739. #u46955_div {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:374px;
  2745. height:365px;
  2746. background:inherit;
  2747. background-color:rgba(255, 255, 255, 1);
  2748. border-radius:0px;
  2749. filter:drop-shadow(none);
  2750. transition:none;
  2751. }
  2752. #u46955 {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:29px;
  2756. top:415px;
  2757. width:374px;
  2758. height:365px;
  2759. display:flex;
  2760. transition:none;
  2761. transform-origin:50% 50%;
  2762. }
  2763. #u46955 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 2px 2px 2px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u46955_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. visibility:hidden;
  2775. }
  2776. #u46956_div {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:73px;
  2782. height:30px;
  2783. background:inherit;
  2784. background-color:rgba(255, 255, 255, 0);
  2785. border-left:0px;
  2786. border-top:0px;
  2787. border-right:0px;
  2788. border-radius:0px;
  2789. border-bottom-right-radius:0px;
  2790. border-bottom-left-radius:0px;
  2791. filter:drop-shadow(none);
  2792. transition:none;
  2793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2794. font-weight:500;
  2795. font-style:normal;
  2796. font-size:18px;
  2797. line-height:30px;
  2798. }
  2799. #u46956 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:61px;
  2803. top:430px;
  2804. width:73px;
  2805. height:30px;
  2806. display:flex;
  2807. transition:none;
  2808. transform-origin:50% 50%;
  2809. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2810. font-weight:500;
  2811. font-style:normal;
  2812. font-size:18px;
  2813. line-height:30px;
  2814. }
  2815. #u46956 .text {
  2816. position:absolute;
  2817. align-self:flex-start;
  2818. padding:0px 0px 0px 0px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u46956_text {
  2823. border-width:0px;
  2824. white-space:nowrap;
  2825. text-transform:none;
  2826. }
  2827. #u46957_div {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:329px;
  2833. height:90px;
  2834. background:inherit;
  2835. background-color:rgba(255, 255, 255, 0);
  2836. border-left:0px;
  2837. border-top:0px;
  2838. border-right:0px;
  2839. border-radius:0px;
  2840. border-bottom-right-radius:0px;
  2841. border-bottom-left-radius:0px;
  2842. filter:drop-shadow(none);
  2843. transition:none;
  2844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2845. font-weight:400;
  2846. font-style:normal;
  2847. font-size:14px;
  2848. line-height:30px;
  2849. }
  2850. #u46957 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:61px;
  2854. top:474px;
  2855. width:329px;
  2856. height:90px;
  2857. display:flex;
  2858. transition:none;
  2859. transform-origin:50% 50%;
  2860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:14px;
  2864. line-height:30px;
  2865. }
  2866. #u46957 .text {
  2867. position:absolute;
  2868. align-self:flex-start;
  2869. padding:0px 0px 0px 0px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u46957_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. }
  2878. #u46958 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:61px;
  2882. top:572px;
  2883. width:77px;
  2884. height:53px;
  2885. display:flex;
  2886. transition:none;
  2887. }
  2888. #u46958 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 2px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u46958_img {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:77px;
  2901. height:53px;
  2902. }
  2903. #u46958_text {
  2904. border-width:0px;
  2905. word-wrap:break-word;
  2906. text-transform:none;
  2907. visibility:hidden;
  2908. }
  2909. #u46959 {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:145px;
  2913. top:572px;
  2914. width:77px;
  2915. height:53px;
  2916. display:flex;
  2917. transition:none;
  2918. }
  2919. #u46959 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:2px 2px 2px 2px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u46959_img {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:77px;
  2932. height:53px;
  2933. }
  2934. #u46959_text {
  2935. border-width:0px;
  2936. word-wrap:break-word;
  2937. text-transform:none;
  2938. visibility:hidden;
  2939. }
  2940. #u46960 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:228px;
  2944. top:572px;
  2945. width:77px;
  2946. height:53px;
  2947. display:flex;
  2948. transition:none;
  2949. }
  2950. #u46960 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:2px 2px 2px 2px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u46960_img {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:77px;
  2963. height:53px;
  2964. }
  2965. #u46960_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u46961 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:312px;
  2975. top:572px;
  2976. width:77px;
  2977. height:53px;
  2978. display:flex;
  2979. transition:none;
  2980. }
  2981. #u46961 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 2px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u46961_img {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:77px;
  2994. height:53px;
  2995. }
  2996. #u46961_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. visibility:hidden;
  3001. }
  3002. #u46962 {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:61px;
  3006. top:635px;
  3007. width:77px;
  3008. height:53px;
  3009. display:flex;
  3010. transition:none;
  3011. }
  3012. #u46962 .text {
  3013. position:absolute;
  3014. align-self:center;
  3015. padding:2px 2px 2px 2px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u46962_img {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:77px;
  3025. height:53px;
  3026. }
  3027. #u46962_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. visibility:hidden;
  3032. }
  3033. #u46963 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:145px;
  3037. top:635px;
  3038. width:77px;
  3039. height:53px;
  3040. display:flex;
  3041. transition:none;
  3042. }
  3043. #u46963 .text {
  3044. position:absolute;
  3045. align-self:center;
  3046. padding:2px 2px 2px 2px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u46963_img {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:77px;
  3056. height:53px;
  3057. }
  3058. #u46963_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. visibility:hidden;
  3063. }