styles.css 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:433px;
  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. #u40195 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u40196 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u40196 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u40196_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u40196_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u40197_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u40197 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u40197 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u40197_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u40198 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u40199_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u40199 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u40199 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u40199_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u40200 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u40201 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u40201 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u40201_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u40201_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u40202 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u40202 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u40202_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u40202_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u40203 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u40204 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u40204 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u40204_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u40204_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u40205 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u40205 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u40205_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u40205_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u40206 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u40206 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u40206_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u40206_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u40207 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u40207 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u40207_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u40207_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u40208 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u40208 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u40208_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u40208_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u40209_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u40209 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u40209 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u40209_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u40210 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u40211 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u40211 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u40211_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u40211_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u40212_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u40212 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u40212 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u40212_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u40213 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u40214 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u40214 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u40214_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u40214_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u40215_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u40215 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u40215 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u40215_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u40216_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u40216 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u40216 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u40216_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u40217 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u40218 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u40218 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u40218_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u40218_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u40219_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u40219 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u40219 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u40219_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u40220 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u40221 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u40221 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u40221_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u40221_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u40222_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u40222 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u40222 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u40222_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u40223_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:1130px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 1);
  811. box-sizing:border-box;
  812. border-width:1px;
  813. border-style:solid;
  814. border-color:rgba(215, 215, 215, 1);
  815. border-radius:21px;
  816. border-top-left-radius:0px;
  817. border-top-right-radius:0px;
  818. filter:drop-shadow(none);
  819. transition:none;
  820. }
  821. #u40223 {
  822. border-width:0px;
  823. position:absolute;
  824. left:29px;
  825. top:107px;
  826. width:375px;
  827. height:1130px;
  828. display:flex;
  829. transition:none;
  830. transform-origin:50% 50%;
  831. }
  832. #u40223 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u40223_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u40224 {
  846. border-width:0px;
  847. position:absolute;
  848. left:39px;
  849. top:79px;
  850. width:11px;
  851. height:18px;
  852. display:flex;
  853. transition:none;
  854. }
  855. #u40224 .text {
  856. position:absolute;
  857. align-self:center;
  858. padding:2px 2px 2px 2px;
  859. box-sizing:border-box;
  860. width:100%;
  861. }
  862. #u40224_img {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:11px;
  868. height:18px;
  869. }
  870. #u40224_text {
  871. border-width:0px;
  872. word-wrap:break-word;
  873. text-transform:none;
  874. visibility:hidden;
  875. }
  876. #u40225_div {
  877. border-width:0px;
  878. position:absolute;
  879. left:0px;
  880. top:0px;
  881. width:57px;
  882. height:30px;
  883. background:inherit;
  884. background-color:rgba(255, 255, 255, 0);
  885. border-left:0px;
  886. border-top:0px;
  887. border-right:0px;
  888. border-radius:0px;
  889. border-bottom-right-radius:0px;
  890. border-bottom-left-radius:0px;
  891. filter:drop-shadow(none);
  892. transition:none;
  893. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  894. font-weight:500;
  895. font-style:normal;
  896. font-size:14px;
  897. line-height:30px;
  898. }
  899. #u40225 {
  900. border-width:0px;
  901. position:absolute;
  902. left:59px;
  903. top:73px;
  904. width:57px;
  905. height:30px;
  906. display:flex;
  907. transition:none;
  908. transform-origin:50% 50%;
  909. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  910. font-weight:500;
  911. font-style:normal;
  912. font-size:14px;
  913. line-height:30px;
  914. }
  915. #u40225 .text {
  916. position:absolute;
  917. align-self:flex-start;
  918. padding:0px 0px 0px 0px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u40225_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u40226 {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. }
  935. #u40227_div {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:375px;
  941. height:60px;
  942. background:inherit;
  943. background-color:rgba(24, 144, 255, 1);
  944. border-radius:0px;
  945. filter:drop-shadow(none);
  946. transition:none;
  947. }
  948. #u40227 {
  949. border-width:0px;
  950. position:absolute;
  951. left:29px;
  952. top:107px;
  953. width:375px;
  954. height:60px;
  955. display:flex;
  956. transition:none;
  957. transform-origin:50% 50%;
  958. }
  959. #u40227 .text {
  960. position:absolute;
  961. align-self:center;
  962. padding:2px 2px 2px 2px;
  963. box-sizing:border-box;
  964. width:100%;
  965. }
  966. #u40227_text {
  967. border-width:0px;
  968. word-wrap:break-word;
  969. text-transform:none;
  970. visibility:hidden;
  971. }
  972. #u40228_div {
  973. border-width:0px;
  974. position:absolute;
  975. left:0px;
  976. top:0px;
  977. width:109px;
  978. height:25px;
  979. background:inherit;
  980. background-color:rgba(255, 255, 255, 0);
  981. border-radius:0px;
  982. filter:drop-shadow(none);
  983. transition:none;
  984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  985. font-weight:400;
  986. font-style:normal;
  987. font-size:18px;
  988. color:#FFFFFF;
  989. }
  990. #u40228 {
  991. border-width:0px;
  992. position:absolute;
  993. left:49px;
  994. top:125px;
  995. width:109px;
  996. height:25px;
  997. display:flex;
  998. transition:none;
  999. transform-origin:50% 50%;
  1000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1001. font-weight:400;
  1002. font-style:normal;
  1003. font-size:18px;
  1004. color:#FFFFFF;
  1005. }
  1006. #u40228 .text {
  1007. position:absolute;
  1008. align-self:flex-start;
  1009. padding:0px 0px 0px 0px;
  1010. box-sizing:border-box;
  1011. width:100%;
  1012. }
  1013. #u40228_text {
  1014. border-width:0px;
  1015. white-space:nowrap;
  1016. text-transform:none;
  1017. }
  1018. #u40229 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:378px;
  1022. top:133px;
  1023. width:11px;
  1024. height:8px;
  1025. display:flex;
  1026. transition:none;
  1027. }
  1028. #u40229 .text {
  1029. position:absolute;
  1030. align-self:center;
  1031. padding:2px 2px 2px 2px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u40229_img {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:11px;
  1041. height:8px;
  1042. }
  1043. #u40229_text {
  1044. border-width:0px;
  1045. word-wrap:break-word;
  1046. text-transform:none;
  1047. visibility:hidden;
  1048. }
  1049. #u40230 {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:0px;
  1055. height:0px;
  1056. }
  1057. #u40231_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:375px;
  1063. height:540px;
  1064. background:inherit;
  1065. background-color:rgba(255, 255, 255, 1);
  1066. border-radius:4px;
  1067. filter:drop-shadow(none);
  1068. transition:none;
  1069. }
  1070. #u40231 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:29px;
  1074. top:167px;
  1075. width:375px;
  1076. height:540px;
  1077. display:flex;
  1078. transition:none;
  1079. transform-origin:50% 50%;
  1080. }
  1081. #u40231 .text {
  1082. position:absolute;
  1083. align-self:center;
  1084. padding:2px 2px 2px 2px;
  1085. box-sizing:border-box;
  1086. width:100%;
  1087. }
  1088. #u40231_text {
  1089. border-width:0px;
  1090. word-wrap:break-word;
  1091. text-transform:none;
  1092. visibility:hidden;
  1093. }
  1094. #u40232_div {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:97px;
  1100. height:40px;
  1101. background:inherit;
  1102. background-color:rgba(255, 255, 255, 0);
  1103. border-left:0px;
  1104. border-top:0px;
  1105. border-right:0px;
  1106. border-radius:0px;
  1107. border-bottom-right-radius:0px;
  1108. border-bottom-left-radius:0px;
  1109. filter:drop-shadow(none);
  1110. transition:none;
  1111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1112. font-weight:400;
  1113. font-style:normal;
  1114. font-size:14px;
  1115. line-height:40px;
  1116. }
  1117. #u40232 {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:50px;
  1121. top:178px;
  1122. width:97px;
  1123. height:40px;
  1124. display:flex;
  1125. transition:none;
  1126. transform-origin:50% 50%;
  1127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1128. font-weight:400;
  1129. font-style:normal;
  1130. font-size:14px;
  1131. line-height:40px;
  1132. }
  1133. #u40232 .text {
  1134. position:absolute;
  1135. align-self:flex-start;
  1136. padding:0px 0px 0px 0px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u40232_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. }
  1145. #u40233_div {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:235px;
  1151. height:40px;
  1152. background:inherit;
  1153. background-color:rgba(255, 255, 255, 0);
  1154. border-left:0px;
  1155. border-top:0px;
  1156. border-right:0px;
  1157. border-radius:0px;
  1158. border-bottom-right-radius:0px;
  1159. border-bottom-left-radius:0px;
  1160. filter:drop-shadow(none);
  1161. transition:none;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. font-size:14px;
  1166. color:#AAAAAA;
  1167. line-height:40px;
  1168. }
  1169. #u40233 {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:50px;
  1173. top:218px;
  1174. width:235px;
  1175. height:40px;
  1176. display:flex;
  1177. transition:none;
  1178. transform-origin:50% 50%;
  1179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1180. font-weight:400;
  1181. font-style:normal;
  1182. font-size:14px;
  1183. color:#AAAAAA;
  1184. line-height:40px;
  1185. }
  1186. #u40233 .text {
  1187. position:absolute;
  1188. align-self:flex-start;
  1189. padding:0px 0px 0px 0px;
  1190. box-sizing:border-box;
  1191. width:100%;
  1192. }
  1193. #u40233_text {
  1194. border-width:0px;
  1195. word-wrap:break-word;
  1196. text-transform:none;
  1197. }
  1198. #u40234 {
  1199. border-width:0px;
  1200. position:absolute;
  1201. left:0px;
  1202. top:0px;
  1203. width:0px;
  1204. height:0px;
  1205. }
  1206. #u40235 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:0px;
  1210. top:0px;
  1211. width:0px;
  1212. height:0px;
  1213. }
  1214. #u40236 {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:385px;
  1218. top:392px;
  1219. width:7px;
  1220. height:12px;
  1221. display:flex;
  1222. -webkit-transform:rotate(180deg);
  1223. -moz-transform:rotate(180deg);
  1224. -ms-transform:rotate(180deg);
  1225. transform:rotate(180deg);
  1226. transition:none;
  1227. }
  1228. #u40236 .text {
  1229. position:absolute;
  1230. align-self:center;
  1231. padding:2px 2px 2px 2px;
  1232. box-sizing:border-box;
  1233. width:100%;
  1234. }
  1235. #u40236_img {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:0px;
  1239. top:0px;
  1240. width:7px;
  1241. height:12px;
  1242. }
  1243. #u40236_text {
  1244. border-width:0px;
  1245. word-wrap:break-word;
  1246. text-transform:none;
  1247. visibility:hidden;
  1248. }
  1249. #u40237_div {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:0px;
  1253. top:0px;
  1254. width:235px;
  1255. height:40px;
  1256. background:inherit;
  1257. background-color:rgba(255, 255, 255, 0);
  1258. border-left:0px;
  1259. border-top:0px;
  1260. border-right:0px;
  1261. border-radius:0px;
  1262. border-bottom-right-radius:0px;
  1263. border-bottom-left-radius:0px;
  1264. filter:drop-shadow(none);
  1265. transition:none;
  1266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1267. font-weight:400;
  1268. font-style:normal;
  1269. font-size:14px;
  1270. color:#AAAAAA;
  1271. line-height:40px;
  1272. }
  1273. #u40237 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:50px;
  1277. top:378px;
  1278. width:235px;
  1279. height:40px;
  1280. display:flex;
  1281. transition:none;
  1282. transform-origin:50% 50%;
  1283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1284. font-weight:400;
  1285. font-style:normal;
  1286. font-size:14px;
  1287. color:#AAAAAA;
  1288. line-height:40px;
  1289. }
  1290. #u40237 .text {
  1291. position:absolute;
  1292. align-self:flex-start;
  1293. padding:0px 0px 0px 0px;
  1294. box-sizing:border-box;
  1295. width:100%;
  1296. }
  1297. #u40237_text {
  1298. border-width:0px;
  1299. word-wrap:break-word;
  1300. text-transform:none;
  1301. }
  1302. #u40238_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:64px;
  1308. height:40px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border-left:0px;
  1312. border-top:0px;
  1313. border-right:0px;
  1314. border-radius:0px;
  1315. border-bottom-right-radius:0px;
  1316. border-bottom-left-radius:0px;
  1317. filter:drop-shadow(none);
  1318. transition:none;
  1319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1320. font-weight:400;
  1321. font-style:normal;
  1322. font-size:14px;
  1323. line-height:40px;
  1324. }
  1325. #u40238 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:50px;
  1329. top:338px;
  1330. width:64px;
  1331. height:40px;
  1332. display:flex;
  1333. transition:none;
  1334. transform-origin:50% 50%;
  1335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1336. font-weight:400;
  1337. font-style:normal;
  1338. font-size:14px;
  1339. line-height:40px;
  1340. }
  1341. #u40238 .text {
  1342. position:absolute;
  1343. align-self:flex-start;
  1344. padding:0px 0px 0px 0px;
  1345. box-sizing:border-box;
  1346. width:100%;
  1347. }
  1348. #u40238_text {
  1349. border-width:0px;
  1350. white-space:nowrap;
  1351. text-transform:none;
  1352. }
  1353. #u40239_div {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:106px;
  1359. height:40px;
  1360. background:inherit;
  1361. background-color:rgba(255, 255, 255, 0);
  1362. border-left:0px;
  1363. border-top:0px;
  1364. border-right:0px;
  1365. border-radius:0px;
  1366. border-bottom-right-radius:0px;
  1367. border-bottom-left-radius:0px;
  1368. filter:drop-shadow(none);
  1369. transition:none;
  1370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1371. font-weight:400;
  1372. font-style:normal;
  1373. font-size:14px;
  1374. line-height:40px;
  1375. }
  1376. #u40239 {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:50px;
  1380. top:258px;
  1381. width:106px;
  1382. height:40px;
  1383. display:flex;
  1384. transition:none;
  1385. transform-origin:50% 50%;
  1386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1387. font-weight:400;
  1388. font-style:normal;
  1389. font-size:14px;
  1390. line-height:40px;
  1391. }
  1392. #u40239 .text {
  1393. position:absolute;
  1394. align-self:flex-start;
  1395. padding:0px 0px 0px 0px;
  1396. box-sizing:border-box;
  1397. width:100%;
  1398. }
  1399. #u40239_text {
  1400. border-width:0px;
  1401. white-space:nowrap;
  1402. text-transform:none;
  1403. }
  1404. #u40240_div {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:0px;
  1408. top:0px;
  1409. width:235px;
  1410. height:40px;
  1411. background:inherit;
  1412. background-color:rgba(255, 255, 255, 0);
  1413. border-left:0px;
  1414. border-top:0px;
  1415. border-right:0px;
  1416. border-radius:0px;
  1417. border-bottom-right-radius:0px;
  1418. border-bottom-left-radius:0px;
  1419. filter:drop-shadow(none);
  1420. transition:none;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:14px;
  1425. color:#AAAAAA;
  1426. line-height:40px;
  1427. }
  1428. #u40240 {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:50px;
  1432. top:298px;
  1433. width:235px;
  1434. height:40px;
  1435. display:flex;
  1436. transition:none;
  1437. transform-origin:50% 50%;
  1438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1439. font-weight:400;
  1440. font-style:normal;
  1441. font-size:14px;
  1442. color:#AAAAAA;
  1443. line-height:40px;
  1444. }
  1445. #u40240 .text {
  1446. position:absolute;
  1447. align-self:flex-start;
  1448. padding:0px 0px 0px 0px;
  1449. box-sizing:border-box;
  1450. width:100%;
  1451. }
  1452. #u40240_text {
  1453. border-width:0px;
  1454. word-wrap:break-word;
  1455. text-transform:none;
  1456. }
  1457. #u40241 {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:0px;
  1461. top:0px;
  1462. width:0px;
  1463. height:0px;
  1464. }
  1465. #u40242 {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:0px;
  1471. height:0px;
  1472. }
  1473. #u40243 {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:385px;
  1477. top:472px;
  1478. width:7px;
  1479. height:12px;
  1480. display:flex;
  1481. -webkit-transform:rotate(180deg);
  1482. -moz-transform:rotate(180deg);
  1483. -ms-transform:rotate(180deg);
  1484. transform:rotate(180deg);
  1485. transition:none;
  1486. }
  1487. #u40243 .text {
  1488. position:absolute;
  1489. align-self:center;
  1490. padding:2px 2px 2px 2px;
  1491. box-sizing:border-box;
  1492. width:100%;
  1493. }
  1494. #u40243_img {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:0px;
  1498. top:0px;
  1499. width:7px;
  1500. height:12px;
  1501. }
  1502. #u40243_text {
  1503. border-width:0px;
  1504. word-wrap:break-word;
  1505. text-transform:none;
  1506. visibility:hidden;
  1507. }
  1508. #u40244_div {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:235px;
  1514. height:40px;
  1515. background:inherit;
  1516. background-color:rgba(255, 255, 255, 0);
  1517. border-left:0px;
  1518. border-top:0px;
  1519. border-right:0px;
  1520. border-radius:0px;
  1521. border-bottom-right-radius:0px;
  1522. border-bottom-left-radius:0px;
  1523. filter:drop-shadow(none);
  1524. transition:none;
  1525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1526. font-weight:400;
  1527. font-style:normal;
  1528. font-size:14px;
  1529. color:#AAAAAA;
  1530. line-height:40px;
  1531. }
  1532. #u40244 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:50px;
  1536. top:458px;
  1537. width:235px;
  1538. height:40px;
  1539. display:flex;
  1540. transition:none;
  1541. transform-origin:50% 50%;
  1542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1543. font-weight:400;
  1544. font-style:normal;
  1545. font-size:14px;
  1546. color:#AAAAAA;
  1547. line-height:40px;
  1548. }
  1549. #u40244 .text {
  1550. position:absolute;
  1551. align-self:flex-start;
  1552. padding:0px 0px 0px 0px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u40244_text {
  1557. border-width:0px;
  1558. word-wrap:break-word;
  1559. text-transform:none;
  1560. }
  1561. #u40245_div {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:0px;
  1565. top:0px;
  1566. width:92px;
  1567. height:40px;
  1568. background:inherit;
  1569. background-color:rgba(255, 255, 255, 0);
  1570. border-left:0px;
  1571. border-top:0px;
  1572. border-right:0px;
  1573. border-radius:0px;
  1574. border-bottom-right-radius:0px;
  1575. border-bottom-left-radius:0px;
  1576. filter:drop-shadow(none);
  1577. transition:none;
  1578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1579. font-weight:400;
  1580. font-style:normal;
  1581. font-size:14px;
  1582. line-height:40px;
  1583. }
  1584. #u40245 {
  1585. border-width:0px;
  1586. position:absolute;
  1587. left:50px;
  1588. top:418px;
  1589. width:92px;
  1590. height:40px;
  1591. display:flex;
  1592. transition:none;
  1593. transform-origin:50% 50%;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:14px;
  1598. line-height:40px;
  1599. }
  1600. #u40245 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u40245_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u40246 {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:0px;
  1618. height:0px;
  1619. }
  1620. #u40247 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:0px;
  1626. height:0px;
  1627. }
  1628. #u40248_div {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:57px;
  1634. height:40px;
  1635. background:inherit;
  1636. background-color:rgba(255, 255, 255, 0);
  1637. border-left:0px;
  1638. border-top:0px;
  1639. border-right:0px;
  1640. border-radius:0px;
  1641. border-bottom-right-radius:0px;
  1642. border-bottom-left-radius:0px;
  1643. filter:drop-shadow(none);
  1644. transition:none;
  1645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1646. font-weight:400;
  1647. font-style:normal;
  1648. font-size:14px;
  1649. line-height:40px;
  1650. }
  1651. #u40248 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:50px;
  1655. top:578px;
  1656. width:57px;
  1657. height:40px;
  1658. display:flex;
  1659. transition:none;
  1660. transform-origin:50% 50%;
  1661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1662. font-weight:400;
  1663. font-style:normal;
  1664. font-size:14px;
  1665. line-height:40px;
  1666. }
  1667. #u40248 .text {
  1668. position:absolute;
  1669. align-self:flex-start;
  1670. padding:0px 0px 0px 0px;
  1671. box-sizing:border-box;
  1672. width:100%;
  1673. }
  1674. #u40248_text {
  1675. border-width:0px;
  1676. white-space:nowrap;
  1677. text-transform:none;
  1678. }
  1679. #u40249_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:59px;
  1685. height:30px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 0);
  1688. box-sizing:border-box;
  1689. border-width:1px;
  1690. border-style:solid;
  1691. border-color:rgba(24, 144, 255, 1);
  1692. border-radius:4px;
  1693. filter:drop-shadow(none);
  1694. transition:none;
  1695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1696. font-weight:400;
  1697. font-style:normal;
  1698. font-size:12px;
  1699. color:#1890FF;
  1700. }
  1701. #u40249 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:50px;
  1705. top:618px;
  1706. width:59px;
  1707. height:30px;
  1708. display:flex;
  1709. transition:none;
  1710. transform-origin:50% 50%;
  1711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1712. font-weight:400;
  1713. font-style:normal;
  1714. font-size:12px;
  1715. color:#1890FF;
  1716. }
  1717. #u40249 .text {
  1718. position:absolute;
  1719. align-self:center;
  1720. padding:2px 5px 2px 5px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u40249_text {
  1725. border-width:0px;
  1726. white-space:nowrap;
  1727. text-transform:none;
  1728. }
  1729. #u40250_div {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:59px;
  1735. height:30px;
  1736. background:inherit;
  1737. background-color:rgba(255, 255, 255, 0);
  1738. box-sizing:border-box;
  1739. border-width:1px;
  1740. border-style:solid;
  1741. border-color:rgba(215, 215, 215, 1);
  1742. border-radius:4px;
  1743. filter:drop-shadow(none);
  1744. transition:none;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:12px;
  1749. color:#AAAAAA;
  1750. }
  1751. #u40250 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:119px;
  1755. top:618px;
  1756. width:59px;
  1757. height:30px;
  1758. display:flex;
  1759. transition:none;
  1760. transform-origin:50% 50%;
  1761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1762. font-weight:400;
  1763. font-style:normal;
  1764. font-size:12px;
  1765. color:#AAAAAA;
  1766. }
  1767. #u40250 .text {
  1768. position:absolute;
  1769. align-self:center;
  1770. padding:2px 5px 2px 5px;
  1771. box-sizing:border-box;
  1772. width:100%;
  1773. }
  1774. #u40250_text {
  1775. border-width:0px;
  1776. white-space:nowrap;
  1777. text-transform:none;
  1778. }
  1779. #u40251_div {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:59px;
  1785. height:30px;
  1786. background:inherit;
  1787. background-color:rgba(255, 255, 255, 0);
  1788. box-sizing:border-box;
  1789. border-width:1px;
  1790. border-style:solid;
  1791. border-color:rgba(215, 215, 215, 1);
  1792. border-radius:4px;
  1793. filter:drop-shadow(none);
  1794. transition:none;
  1795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:12px;
  1799. color:#AAAAAA;
  1800. }
  1801. #u40251 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:188px;
  1805. top:618px;
  1806. width:59px;
  1807. height:30px;
  1808. display:flex;
  1809. transition:none;
  1810. transform-origin:50% 50%;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:12px;
  1815. color:#AAAAAA;
  1816. }
  1817. #u40251 .text {
  1818. position:absolute;
  1819. align-self:center;
  1820. padding:2px 5px 2px 5px;
  1821. box-sizing:border-box;
  1822. width:100%;
  1823. }
  1824. #u40251_text {
  1825. border-width:0px;
  1826. white-space:nowrap;
  1827. text-transform:none;
  1828. }
  1829. #u40252_div {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:0px;
  1833. top:0px;
  1834. width:59px;
  1835. height:30px;
  1836. background:inherit;
  1837. background-color:rgba(255, 255, 255, 0);
  1838. box-sizing:border-box;
  1839. border-width:1px;
  1840. border-style:solid;
  1841. border-color:rgba(215, 215, 215, 1);
  1842. border-radius:4px;
  1843. filter:drop-shadow(none);
  1844. transition:none;
  1845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1846. font-weight:400;
  1847. font-style:normal;
  1848. font-size:12px;
  1849. color:#AAAAAA;
  1850. }
  1851. #u40252 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:257px;
  1855. top:618px;
  1856. width:59px;
  1857. height:30px;
  1858. display:flex;
  1859. transition:none;
  1860. transform-origin:50% 50%;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:12px;
  1865. color:#AAAAAA;
  1866. }
  1867. #u40252 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 5px 2px 5px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u40252_text {
  1875. border-width:0px;
  1876. white-space:nowrap;
  1877. text-transform:none;
  1878. }
  1879. #u40253_div {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:59px;
  1885. height:30px;
  1886. background:inherit;
  1887. background-color:rgba(255, 255, 255, 0);
  1888. box-sizing:border-box;
  1889. border-width:1px;
  1890. border-style:solid;
  1891. border-color:rgba(215, 215, 215, 1);
  1892. border-radius:4px;
  1893. filter:drop-shadow(none);
  1894. transition:none;
  1895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1896. font-weight:400;
  1897. font-style:normal;
  1898. font-size:12px;
  1899. color:#AAAAAA;
  1900. }
  1901. #u40253 {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:326px;
  1905. top:618px;
  1906. width:59px;
  1907. height:30px;
  1908. display:flex;
  1909. transition:none;
  1910. transform-origin:50% 50%;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:12px;
  1915. color:#AAAAAA;
  1916. }
  1917. #u40253 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 5px 2px 5px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u40253_text {
  1925. border-width:0px;
  1926. white-space:nowrap;
  1927. text-transform:none;
  1928. }
  1929. #u40254_div {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:35px;
  1935. height:30px;
  1936. background:inherit;
  1937. background-color:rgba(255, 255, 255, 0);
  1938. box-sizing:border-box;
  1939. border-width:1px;
  1940. border-style:solid;
  1941. border-color:rgba(215, 215, 215, 1);
  1942. border-radius:4px;
  1943. filter:drop-shadow(none);
  1944. transition:none;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:12px;
  1949. color:#AAAAAA;
  1950. }
  1951. #u40254 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:50px;
  1955. top:658px;
  1956. width:35px;
  1957. height:30px;
  1958. display:flex;
  1959. transition:none;
  1960. transform-origin:50% 50%;
  1961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:12px;
  1965. color:#AAAAAA;
  1966. }
  1967. #u40254 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 5px 2px 5px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u40254_text {
  1975. border-width:0px;
  1976. white-space:nowrap;
  1977. text-transform:none;
  1978. }
  1979. #u40255 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:0px;
  1985. height:0px;
  1986. }
  1987. #u40256 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:0px;
  1993. height:0px;
  1994. }
  1995. #u40257 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:385px;
  1999. top:552px;
  2000. width:7px;
  2001. height:12px;
  2002. display:flex;
  2003. -webkit-transform:rotate(180deg);
  2004. -moz-transform:rotate(180deg);
  2005. -ms-transform:rotate(180deg);
  2006. transform:rotate(180deg);
  2007. transition:none;
  2008. }
  2009. #u40257 .text {
  2010. position:absolute;
  2011. align-self:center;
  2012. padding:2px 2px 2px 2px;
  2013. box-sizing:border-box;
  2014. width:100%;
  2015. }
  2016. #u40257_img {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:0px;
  2020. top:0px;
  2021. width:7px;
  2022. height:12px;
  2023. }
  2024. #u40257_text {
  2025. border-width:0px;
  2026. word-wrap:break-word;
  2027. text-transform:none;
  2028. visibility:hidden;
  2029. }
  2030. #u40258_div {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:235px;
  2036. height:40px;
  2037. background:inherit;
  2038. background-color:rgba(255, 255, 255, 0);
  2039. border-left:0px;
  2040. border-top:0px;
  2041. border-right:0px;
  2042. border-radius:0px;
  2043. border-bottom-right-radius:0px;
  2044. border-bottom-left-radius:0px;
  2045. filter:drop-shadow(none);
  2046. transition:none;
  2047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2048. font-weight:400;
  2049. font-style:normal;
  2050. font-size:14px;
  2051. color:#AAAAAA;
  2052. line-height:40px;
  2053. }
  2054. #u40258 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:50px;
  2058. top:538px;
  2059. width:235px;
  2060. height:40px;
  2061. display:flex;
  2062. transition:none;
  2063. transform-origin:50% 50%;
  2064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. font-size:14px;
  2068. color:#AAAAAA;
  2069. line-height:40px;
  2070. }
  2071. #u40258 .text {
  2072. position:absolute;
  2073. align-self:flex-start;
  2074. padding:0px 0px 0px 0px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u40258_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. }
  2083. #u40259_div {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:92px;
  2089. height:40px;
  2090. background:inherit;
  2091. background-color:rgba(255, 255, 255, 0);
  2092. border-left:0px;
  2093. border-top:0px;
  2094. border-right:0px;
  2095. border-radius:0px;
  2096. border-bottom-right-radius:0px;
  2097. border-bottom-left-radius:0px;
  2098. filter:drop-shadow(none);
  2099. transition:none;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:14px;
  2104. line-height:40px;
  2105. }
  2106. #u40259 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:50px;
  2110. top:498px;
  2111. width:92px;
  2112. height:40px;
  2113. display:flex;
  2114. transition:none;
  2115. transform-origin:50% 50%;
  2116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2117. font-weight:400;
  2118. font-style:normal;
  2119. font-size:14px;
  2120. line-height:40px;
  2121. }
  2122. #u40259 .text {
  2123. position:absolute;
  2124. align-self:flex-start;
  2125. padding:0px 0px 0px 0px;
  2126. box-sizing:border-box;
  2127. width:100%;
  2128. }
  2129. #u40259_text {
  2130. border-width:0px;
  2131. white-space:nowrap;
  2132. text-transform:none;
  2133. }
  2134. #u40260 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:0px;
  2140. height:0px;
  2141. }
  2142. #u40261_div {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:375px;
  2148. height:450px;
  2149. background:inherit;
  2150. background-color:rgba(255, 255, 255, 1);
  2151. border-radius:4px;
  2152. filter:drop-shadow(none);
  2153. transition:none;
  2154. }
  2155. #u40261 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:29px;
  2159. top:717px;
  2160. width:375px;
  2161. height:450px;
  2162. display:flex;
  2163. transition:none;
  2164. transform-origin:50% 50%;
  2165. }
  2166. #u40261 .text {
  2167. position:absolute;
  2168. align-self:center;
  2169. padding:2px 2px 2px 2px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u40261_text {
  2174. border-width:0px;
  2175. word-wrap:break-word;
  2176. text-transform:none;
  2177. visibility:hidden;
  2178. }
  2179. #u40262_div {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:0px;
  2183. top:0px;
  2184. width:97px;
  2185. height:40px;
  2186. background:inherit;
  2187. background-color:rgba(255, 255, 255, 0);
  2188. border-left:0px;
  2189. border-top:0px;
  2190. border-right:0px;
  2191. border-radius:0px;
  2192. border-bottom-right-radius:0px;
  2193. border-bottom-left-radius:0px;
  2194. filter:drop-shadow(none);
  2195. transition:none;
  2196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2197. font-weight:400;
  2198. font-style:normal;
  2199. font-size:14px;
  2200. line-height:40px;
  2201. }
  2202. #u40262 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:50px;
  2206. top:728px;
  2207. width:97px;
  2208. height:40px;
  2209. display:flex;
  2210. transition:none;
  2211. transform-origin:50% 50%;
  2212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2213. font-weight:400;
  2214. font-style:normal;
  2215. font-size:14px;
  2216. line-height:40px;
  2217. }
  2218. #u40262 .text {
  2219. position:absolute;
  2220. align-self:flex-start;
  2221. padding:0px 0px 0px 0px;
  2222. box-sizing:border-box;
  2223. width:100%;
  2224. }
  2225. #u40262_text {
  2226. border-width:0px;
  2227. word-wrap:break-word;
  2228. text-transform:none;
  2229. }
  2230. #u40263_div {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:235px;
  2236. height:40px;
  2237. background:inherit;
  2238. background-color:rgba(255, 255, 255, 0);
  2239. border-left:0px;
  2240. border-top:0px;
  2241. border-right:0px;
  2242. border-radius:0px;
  2243. border-bottom-right-radius:0px;
  2244. border-bottom-left-radius:0px;
  2245. filter:drop-shadow(none);
  2246. transition:none;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:14px;
  2251. color:#AAAAAA;
  2252. line-height:40px;
  2253. }
  2254. #u40263 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:50px;
  2258. top:768px;
  2259. width:235px;
  2260. height:40px;
  2261. display:flex;
  2262. transition:none;
  2263. transform-origin:50% 50%;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:14px;
  2268. color:#AAAAAA;
  2269. line-height:40px;
  2270. }
  2271. #u40263 .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. #u40263_text {
  2279. border-width:0px;
  2280. word-wrap:break-word;
  2281. text-transform:none;
  2282. }
  2283. #u40264 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:0px;
  2289. height:0px;
  2290. }
  2291. #u40265 {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:0px;
  2295. top:0px;
  2296. width:0px;
  2297. height:0px;
  2298. }
  2299. #u40266_div {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:235px;
  2305. height:40px;
  2306. background:inherit;
  2307. background-color:rgba(255, 255, 255, 0);
  2308. border-left:0px;
  2309. border-top:0px;
  2310. border-right:0px;
  2311. border-radius:0px;
  2312. border-bottom-right-radius:0px;
  2313. border-bottom-left-radius:0px;
  2314. filter:drop-shadow(none);
  2315. transition:none;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:14px;
  2320. color:#AAAAAA;
  2321. line-height:40px;
  2322. }
  2323. #u40266 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:50px;
  2327. top:928px;
  2328. width:235px;
  2329. height:40px;
  2330. display:flex;
  2331. transition:none;
  2332. transform-origin:50% 50%;
  2333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:14px;
  2337. color:#AAAAAA;
  2338. line-height:40px;
  2339. }
  2340. #u40266 .text {
  2341. position:absolute;
  2342. align-self:flex-start;
  2343. padding:0px 0px 0px 0px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u40266_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. }
  2352. #u40267_div {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:71px;
  2358. height:40px;
  2359. background:inherit;
  2360. background-color:rgba(255, 255, 255, 0);
  2361. border-left:0px;
  2362. border-top:0px;
  2363. border-right:0px;
  2364. border-radius:0px;
  2365. border-bottom-right-radius:0px;
  2366. border-bottom-left-radius:0px;
  2367. filter:drop-shadow(none);
  2368. transition:none;
  2369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. font-size:14px;
  2373. line-height:40px;
  2374. }
  2375. #u40267 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:50px;
  2379. top:888px;
  2380. width:71px;
  2381. height:40px;
  2382. display:flex;
  2383. transition:none;
  2384. transform-origin:50% 50%;
  2385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2386. font-weight:400;
  2387. font-style:normal;
  2388. font-size:14px;
  2389. line-height:40px;
  2390. }
  2391. #u40267 .text {
  2392. position:absolute;
  2393. align-self:flex-start;
  2394. padding:0px 0px 0px 0px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u40267_text {
  2399. border-width:0px;
  2400. white-space:nowrap;
  2401. text-transform:none;
  2402. }
  2403. #u40268_div {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:78px;
  2409. height:40px;
  2410. background:inherit;
  2411. background-color:rgba(255, 255, 255, 0);
  2412. border-left:0px;
  2413. border-top:0px;
  2414. border-right:0px;
  2415. border-radius:0px;
  2416. border-bottom-right-radius:0px;
  2417. border-bottom-left-radius:0px;
  2418. filter:drop-shadow(none);
  2419. transition:none;
  2420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:14px;
  2424. line-height:40px;
  2425. }
  2426. #u40268 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:50px;
  2430. top:808px;
  2431. width:78px;
  2432. height:40px;
  2433. display:flex;
  2434. transition:none;
  2435. transform-origin:50% 50%;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:14px;
  2440. line-height:40px;
  2441. }
  2442. #u40268 .text {
  2443. position:absolute;
  2444. align-self:flex-start;
  2445. padding:0px 0px 0px 0px;
  2446. box-sizing:border-box;
  2447. width:100%;
  2448. }
  2449. #u40268_text {
  2450. border-width:0px;
  2451. white-space:nowrap;
  2452. text-transform:none;
  2453. }
  2454. #u40269_div {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:235px;
  2460. height:40px;
  2461. background:inherit;
  2462. background-color:rgba(255, 255, 255, 0);
  2463. border-left:0px;
  2464. border-top:0px;
  2465. border-right:0px;
  2466. border-radius:0px;
  2467. border-bottom-right-radius:0px;
  2468. border-bottom-left-radius:0px;
  2469. filter:drop-shadow(none);
  2470. transition:none;
  2471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2472. font-weight:400;
  2473. font-style:normal;
  2474. font-size:14px;
  2475. color:#AAAAAA;
  2476. line-height:40px;
  2477. }
  2478. #u40269 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:50px;
  2482. top:848px;
  2483. width:235px;
  2484. height:40px;
  2485. display:flex;
  2486. transition:none;
  2487. transform-origin:50% 50%;
  2488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2489. font-weight:400;
  2490. font-style:normal;
  2491. font-size:14px;
  2492. color:#AAAAAA;
  2493. line-height:40px;
  2494. }
  2495. #u40269 .text {
  2496. position:absolute;
  2497. align-self:flex-start;
  2498. padding:0px 0px 0px 0px;
  2499. box-sizing:border-box;
  2500. width:100%;
  2501. }
  2502. #u40269_text {
  2503. border-width:0px;
  2504. word-wrap:break-word;
  2505. text-transform:none;
  2506. }
  2507. #u40270 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:0px;
  2513. height:0px;
  2514. }
  2515. #u40271 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:0px;
  2521. height:0px;
  2522. }
  2523. #u40272_div {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:57px;
  2529. height:40px;
  2530. background:inherit;
  2531. background-color:rgba(255, 255, 255, 0);
  2532. border-left:0px;
  2533. border-top:0px;
  2534. border-right:0px;
  2535. border-radius:0px;
  2536. border-bottom-right-radius:0px;
  2537. border-bottom-left-radius:0px;
  2538. filter:drop-shadow(none);
  2539. transition:none;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:14px;
  2544. line-height:40px;
  2545. }
  2546. #u40272 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:50px;
  2550. top:968px;
  2551. width:57px;
  2552. height:40px;
  2553. display:flex;
  2554. transition:none;
  2555. transform-origin:50% 50%;
  2556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:14px;
  2560. line-height:40px;
  2561. }
  2562. #u40272 .text {
  2563. position:absolute;
  2564. align-self:flex-start;
  2565. padding:0px 0px 0px 0px;
  2566. box-sizing:border-box;
  2567. width:100%;
  2568. }
  2569. #u40272_text {
  2570. border-width:0px;
  2571. white-space:nowrap;
  2572. text-transform:none;
  2573. }
  2574. #u40273 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:0px;
  2580. height:0px;
  2581. }
  2582. #u40274 {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:0px;
  2588. height:0px;
  2589. }
  2590. #u40275_div {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:342px;
  2596. height:40px;
  2597. background:inherit;
  2598. background-color:rgba(255, 255, 255, 0);
  2599. border-left:0px;
  2600. border-top:0px;
  2601. border-right:0px;
  2602. border-radius:0px;
  2603. border-bottom-right-radius:0px;
  2604. border-bottom-left-radius:0px;
  2605. filter:drop-shadow(none);
  2606. transition:none;
  2607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2608. font-weight:400;
  2609. font-style:normal;
  2610. font-size:14px;
  2611. color:#AAAAAA;
  2612. line-height:40px;
  2613. }
  2614. #u40275 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:50px;
  2618. top:1118px;
  2619. width:342px;
  2620. height:40px;
  2621. display:flex;
  2622. transition:none;
  2623. transform-origin:50% 50%;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:14px;
  2628. color:#AAAAAA;
  2629. line-height:40px;
  2630. }
  2631. #u40275 .text {
  2632. position:absolute;
  2633. align-self:flex-start;
  2634. padding:0px 0px 0px 0px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u40275_text {
  2639. border-width:0px;
  2640. word-wrap:break-word;
  2641. text-transform:none;
  2642. }
  2643. #u40276_div {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:57px;
  2649. height:40px;
  2650. background:inherit;
  2651. background-color:rgba(255, 255, 255, 0);
  2652. border-left:0px;
  2653. border-top:0px;
  2654. border-right:0px;
  2655. border-radius:0px;
  2656. border-bottom-right-radius:0px;
  2657. border-bottom-left-radius:0px;
  2658. filter:drop-shadow(none);
  2659. transition:none;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:14px;
  2664. line-height:40px;
  2665. }
  2666. #u40276 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:50px;
  2670. top:1078px;
  2671. width:57px;
  2672. height:40px;
  2673. display:flex;
  2674. transition:none;
  2675. transform-origin:50% 50%;
  2676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2677. font-weight:400;
  2678. font-style:normal;
  2679. font-size:14px;
  2680. line-height:40px;
  2681. }
  2682. #u40276 .text {
  2683. position:absolute;
  2684. align-self:flex-start;
  2685. padding:0px 0px 0px 0px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u40276_text {
  2690. border-width:0px;
  2691. white-space:nowrap;
  2692. text-transform:none;
  2693. }
  2694. #u40277_div {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:25px;
  2700. height:40px;
  2701. background:inherit;
  2702. background-color:rgba(255, 255, 255, 0);
  2703. border-left:0px;
  2704. border-top:0px;
  2705. border-right:0px;
  2706. border-radius:0px;
  2707. border-bottom-right-radius:0px;
  2708. border-bottom-left-radius:0px;
  2709. filter:drop-shadow(none);
  2710. transition:none;
  2711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:12px;
  2715. color:#1890FF;
  2716. line-height:40px;
  2717. }
  2718. #u40277 {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:367px;
  2722. top:1078px;
  2723. width:25px;
  2724. height:40px;
  2725. display:flex;
  2726. transition:none;
  2727. transform-origin:50% 50%;
  2728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2729. font-weight:400;
  2730. font-style:normal;
  2731. font-size:12px;
  2732. color:#1890FF;
  2733. line-height:40px;
  2734. }
  2735. #u40277 .text {
  2736. position:absolute;
  2737. align-self:flex-start;
  2738. padding:0px 0px 0px 0px;
  2739. box-sizing:border-box;
  2740. width:100%;
  2741. }
  2742. #u40277_text {
  2743. border-width:0px;
  2744. white-space:nowrap;
  2745. text-transform:none;
  2746. }
  2747. #u40278_div {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:74px;
  2753. height:70px;
  2754. background:inherit;
  2755. background-color:rgba(255, 255, 255, 1);
  2756. box-sizing:border-box;
  2757. border-width:1px;
  2758. border-style:solid;
  2759. border-color:rgba(215, 215, 215, 1);
  2760. border-radius:2px;
  2761. filter:drop-shadow(none);
  2762. transition:none;
  2763. font-size:28px;
  2764. }
  2765. #u40278 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:50px;
  2769. top:1008px;
  2770. width:74px;
  2771. height:70px;
  2772. display:flex;
  2773. transition:none;
  2774. transform-origin:50% 50%;
  2775. font-size:28px;
  2776. }
  2777. #u40278 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u40278_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. }
  2789. #u40279 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:0px;
  2795. height:0px;
  2796. }
  2797. #u40280_div {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:229px;
  2803. height:34px;
  2804. background:inherit;
  2805. background-color:rgba(255, 255, 255, 0);
  2806. border-left:0px;
  2807. border-top:0px;
  2808. border-right:0px;
  2809. border-radius:0px;
  2810. border-bottom-right-radius:0px;
  2811. border-bottom-left-radius:0px;
  2812. filter:drop-shadow(none);
  2813. transition:none;
  2814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2815. font-weight:400;
  2816. font-style:normal;
  2817. font-size:12px;
  2818. color:#AAAAAA;
  2819. }
  2820. #u40280 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:133px;
  2824. top:1008px;
  2825. width:229px;
  2826. height:34px;
  2827. display:flex;
  2828. transition:none;
  2829. transform-origin:50% 50%;
  2830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2831. font-weight:400;
  2832. font-style:normal;
  2833. font-size:12px;
  2834. color:#AAAAAA;
  2835. }
  2836. #u40280 .text {
  2837. position:absolute;
  2838. align-self:flex-start;
  2839. padding:0px 0px 0px 0px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u40280_text {
  2844. border-width:0px;
  2845. white-space:nowrap;
  2846. text-transform:none;
  2847. }
  2848. #u40281 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:0px;
  2854. height:0px;
  2855. }
  2856. #u40282 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:0px;
  2862. height:0px;
  2863. }
  2864. #u40283_div {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:376px;
  2870. height:60px;
  2871. background:inherit;
  2872. background-color:rgba(255, 255, 255, 1);
  2873. border-top:0px;
  2874. border-radius:22px;
  2875. border-top-left-radius:0px;
  2876. border-top-right-radius:0px;
  2877. filter:drop-shadow(none);
  2878. transition:none;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. }
  2883. #u40283 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:28px;
  2887. top:1177px;
  2888. width:376px;
  2889. height:60px;
  2890. display:flex;
  2891. transition:none;
  2892. transform-origin:50% 50%;
  2893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2894. font-weight:400;
  2895. font-style:normal;
  2896. }
  2897. #u40283 .text {
  2898. position:absolute;
  2899. align-self:center;
  2900. padding:2px 2px 2px 2px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u40283_text {
  2905. border-width:0px;
  2906. word-wrap:break-word;
  2907. text-transform:none;
  2908. visibility:hidden;
  2909. }
  2910. #u40284_div {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:341px;
  2916. height:40px;
  2917. background:inherit;
  2918. background-color:rgba(41, 143, 255, 1);
  2919. border-radius:45px;
  2920. filter:drop-shadow(none);
  2921. transition:none;
  2922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:14px;
  2926. color:#FFFFFF;
  2927. }
  2928. #u40284 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:46px;
  2932. top:1187px;
  2933. width:341px;
  2934. height:40px;
  2935. display:flex;
  2936. transition:none;
  2937. transform-origin:50% 50%;
  2938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2939. font-weight:400;
  2940. font-style:normal;
  2941. font-size:14px;
  2942. color:#FFFFFF;
  2943. }
  2944. #u40284 .text {
  2945. position:absolute;
  2946. align-self:center;
  2947. padding:2px 2px 2px 2px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u40284_text {
  2952. border-width:0px;
  2953. word-wrap:break-word;
  2954. text-transform:none;
  2955. }