styles.css 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1253px;
  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. #u47790 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u47791 {
  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. #u47791 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u47791_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u47791_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u47792_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. #u47792 {
  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. #u47792 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u47792_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u47793 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u47794_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. #u47794 {
  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. #u47794 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u47794_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u47795 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u47796 {
  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. #u47796 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u47796_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u47796_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u47797 {
  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. #u47797 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u47797_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u47797_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u47798 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u47799 {
  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. #u47799 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u47799_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u47799_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u47800 {
  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. #u47800 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u47800_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u47800_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u47801 {
  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. #u47801 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u47801_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u47801_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u47802 {
  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. #u47802 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u47802_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u47802_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u47803 {
  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. #u47803 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u47803_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u47803_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u47804_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. #u47804 {
  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. #u47804 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u47804_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u47805 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u47806 {
  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. #u47806 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u47806_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u47806_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u47807_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. #u47807 {
  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. #u47807 .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. #u47807_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u47808 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u47809 {
  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. #u47809 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u47809_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u47809_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u47810_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. #u47810 {
  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. #u47810 .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. #u47810_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u47811_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. #u47811 {
  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. #u47811 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u47811_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u47812 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u47813 {
  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. #u47813 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u47813_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u47813_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u47814_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. #u47814 {
  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. #u47814 .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. #u47814_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u47815 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u47816 {
  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. #u47816 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u47816_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u47816_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u47817_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. #u47817 {
  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. #u47817 .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. #u47817_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u47818_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:735px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 1);
  811. border-top:0px;
  812. border-radius:25px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u47818 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:105px;
  823. width:375px;
  824. height:735px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u47818 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u47818_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u47819_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:375px;
  848. height:725px;
  849. background:inherit;
  850. background-color:rgba(242, 242, 242, 1);
  851. border-top:0px;
  852. border-radius:22px;
  853. border-top-left-radius:0px;
  854. border-top-right-radius:0px;
  855. filter:drop-shadow(none);
  856. transition:none;
  857. }
  858. #u47819 {
  859. border-width:0px;
  860. position:absolute;
  861. left:29px;
  862. top:105px;
  863. width:375px;
  864. height:725px;
  865. display:flex;
  866. transition:none;
  867. transform-origin:50% 50%;
  868. }
  869. #u47819 .text {
  870. position:absolute;
  871. align-self:center;
  872. padding:2px 2px 2px 2px;
  873. box-sizing:border-box;
  874. width:100%;
  875. }
  876. #u47819_text {
  877. border-width:0px;
  878. word-wrap:break-word;
  879. text-transform:none;
  880. visibility:hidden;
  881. }
  882. #u47820 {
  883. border-width:0px;
  884. position:absolute;
  885. left:42px;
  886. top:79px;
  887. width:11px;
  888. height:18px;
  889. display:flex;
  890. transition:none;
  891. }
  892. #u47820 .text {
  893. position:absolute;
  894. align-self:center;
  895. padding:2px 2px 2px 2px;
  896. box-sizing:border-box;
  897. width:100%;
  898. }
  899. #u47820_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:11px;
  905. height:18px;
  906. }
  907. #u47820_text {
  908. border-width:0px;
  909. word-wrap:break-word;
  910. text-transform:none;
  911. visibility:hidden;
  912. }
  913. #u47821_div {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:37px;
  919. height:30px;
  920. background:inherit;
  921. background-color:rgba(255, 255, 255, 0);
  922. border-left:0px;
  923. border-top:0px;
  924. border-right:0px;
  925. border-radius:0px;
  926. border-bottom-right-radius:0px;
  927. border-bottom-left-radius:0px;
  928. filter:drop-shadow(none);
  929. transition:none;
  930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  931. font-weight:500;
  932. font-style:normal;
  933. font-size:18px;
  934. line-height:30px;
  935. }
  936. #u47821 {
  937. border-width:0px;
  938. position:absolute;
  939. left:71px;
  940. top:73px;
  941. width:37px;
  942. height:30px;
  943. display:flex;
  944. transition:none;
  945. transform-origin:50% 50%;
  946. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  947. font-weight:500;
  948. font-style:normal;
  949. font-size:18px;
  950. line-height:30px;
  951. }
  952. #u47821 .text {
  953. position:absolute;
  954. align-self:flex-start;
  955. padding:0px 0px 0px 0px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u47821_text {
  960. border-width:0px;
  961. white-space:nowrap;
  962. text-transform:none;
  963. }
  964. #u47822 {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:0px;
  970. height:0px;
  971. }
  972. #u47823_div {
  973. border-width:0px;
  974. position:absolute;
  975. left:0px;
  976. top:0px;
  977. width:375px;
  978. height:60px;
  979. background:inherit;
  980. background-color:rgba(255, 255, 255, 1);
  981. box-sizing:border-box;
  982. border-width:1px;
  983. border-style:solid;
  984. border-color:rgba(242, 242, 242, 1);
  985. border-radius:20px;
  986. border-top-left-radius:0px;
  987. border-top-right-radius:0px;
  988. filter:drop-shadow(none);
  989. transition:none;
  990. }
  991. #u47823 {
  992. border-width:0px;
  993. position:absolute;
  994. left:29px;
  995. top:770px;
  996. width:375px;
  997. height:60px;
  998. display:flex;
  999. transition:none;
  1000. transform-origin:50% 50%;
  1001. }
  1002. #u47823 .text {
  1003. position:absolute;
  1004. align-self:center;
  1005. padding:2px 2px 2px 2px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u47823_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. visibility:hidden;
  1014. }
  1015. #u47824_div {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:160px;
  1021. height:40px;
  1022. background:inherit;
  1023. background-color:rgba(0, 137, 254, 1);
  1024. border-radius:63px;
  1025. filter:drop-shadow(none);
  1026. transition:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. font-size:14px;
  1031. color:#FFFFFF;
  1032. }
  1033. #u47824 {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:224px;
  1037. top:780px;
  1038. width:160px;
  1039. height:40px;
  1040. display:flex;
  1041. transition:none;
  1042. transform-origin:50% 50%;
  1043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. font-size:14px;
  1047. color:#FFFFFF;
  1048. }
  1049. #u47824 .text {
  1050. position:absolute;
  1051. align-self:center;
  1052. padding:2px 2px 2px 2px;
  1053. box-sizing:border-box;
  1054. width:100%;
  1055. }
  1056. #u47824_text {
  1057. border-width:0px;
  1058. word-wrap:break-word;
  1059. text-transform:none;
  1060. }
  1061. #u47825_div {
  1062. border-width:0px;
  1063. position:absolute;
  1064. left:0px;
  1065. top:0px;
  1066. width:160px;
  1067. height:40px;
  1068. background:inherit;
  1069. background-color:rgba(255, 255, 255, 1);
  1070. box-sizing:border-box;
  1071. border-width:1px;
  1072. border-style:solid;
  1073. border-color:rgba(121, 121, 121, 1);
  1074. border-radius:63px;
  1075. filter:drop-shadow(none);
  1076. transition:none;
  1077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1078. font-weight:400;
  1079. font-style:normal;
  1080. font-size:14px;
  1081. }
  1082. #u47825 {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:49px;
  1086. top:780px;
  1087. width:160px;
  1088. height:40px;
  1089. display:flex;
  1090. transition:none;
  1091. transform-origin:50% 50%;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:14px;
  1096. }
  1097. #u47825 .text {
  1098. position:absolute;
  1099. align-self:center;
  1100. padding:2px 2px 2px 2px;
  1101. box-sizing:border-box;
  1102. width:100%;
  1103. }
  1104. #u47825_text {
  1105. border-width:0px;
  1106. word-wrap:break-word;
  1107. text-transform:none;
  1108. }
  1109. #u47826_div {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:374px;
  1115. height:665px;
  1116. background:inherit;
  1117. background-color:rgba(255, 255, 255, 1);
  1118. border-radius:0px;
  1119. filter:drop-shadow(none);
  1120. transition:none;
  1121. }
  1122. #u47826 {
  1123. border-width:0px;
  1124. position:absolute;
  1125. left:29px;
  1126. top:105px;
  1127. width:374px;
  1128. height:665px;
  1129. display:flex;
  1130. transition:none;
  1131. transform-origin:50% 50%;
  1132. }
  1133. #u47826 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:2px 2px 2px 2px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u47826_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. visibility:hidden;
  1145. }
  1146. #u47827_div {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:0px;
  1150. top:0px;
  1151. width:113px;
  1152. height:30px;
  1153. background:inherit;
  1154. background-color:rgba(255, 255, 255, 0);
  1155. border-left:0px;
  1156. border-top:0px;
  1157. border-right:0px;
  1158. border-radius:0px;
  1159. border-bottom-right-radius:0px;
  1160. border-bottom-left-radius:0px;
  1161. filter:drop-shadow(none);
  1162. transition:none;
  1163. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1164. font-weight:500;
  1165. font-style:normal;
  1166. font-size:14px;
  1167. line-height:30px;
  1168. }
  1169. #u47827 {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:121px;
  1173. top:120px;
  1174. width:113px;
  1175. height:30px;
  1176. display:flex;
  1177. transition:none;
  1178. transform-origin:50% 50%;
  1179. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1180. font-weight:500;
  1181. font-style:normal;
  1182. font-size:14px;
  1183. line-height:30px;
  1184. }
  1185. #u47827 .text {
  1186. position:absolute;
  1187. align-self:flex-start;
  1188. padding:0px 0px 0px 0px;
  1189. box-sizing:border-box;
  1190. width:100%;
  1191. }
  1192. #u47827_text {
  1193. border-width:0px;
  1194. white-space:nowrap;
  1195. text-transform:none;
  1196. }
  1197. #u47828_div {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:71px;
  1203. height:30px;
  1204. background:inherit;
  1205. background-color:rgba(255, 255, 255, 0);
  1206. border-left:0px;
  1207. border-top:0px;
  1208. border-right:0px;
  1209. border-radius:0px;
  1210. border-bottom-right-radius:0px;
  1211. border-bottom-left-radius:0px;
  1212. filter:drop-shadow(none);
  1213. transition:none;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. font-size:14px;
  1218. line-height:30px;
  1219. }
  1220. #u47828 {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:50px;
  1224. top:120px;
  1225. width:71px;
  1226. height:30px;
  1227. display:flex;
  1228. transition:none;
  1229. transform-origin:50% 50%;
  1230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1231. font-weight:400;
  1232. font-style:normal;
  1233. font-size:14px;
  1234. line-height:30px;
  1235. }
  1236. #u47828 .text {
  1237. position:absolute;
  1238. align-self:flex-start;
  1239. padding:0px 0px 0px 0px;
  1240. box-sizing:border-box;
  1241. width:100%;
  1242. }
  1243. #u47828_text {
  1244. border-width:0px;
  1245. white-space:nowrap;
  1246. text-transform:none;
  1247. }
  1248. #u47829_div {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:0px;
  1252. top:0px;
  1253. width:325px;
  1254. height:50px;
  1255. background:inherit;
  1256. background-color:rgba(255, 255, 255, 0);
  1257. border-left:0px;
  1258. border-top:0px;
  1259. border-right:0px;
  1260. border-radius:0px;
  1261. border-bottom-right-radius:0px;
  1262. border-bottom-left-radius:0px;
  1263. filter:drop-shadow(none);
  1264. transition:none;
  1265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1266. font-weight:400;
  1267. font-style:normal;
  1268. font-size:12px;
  1269. color:#D9001B;
  1270. line-height:25px;
  1271. }
  1272. #u47829 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:502px;
  1276. top:822px;
  1277. width:325px;
  1278. height:50px;
  1279. display:flex;
  1280. transition:none;
  1281. transform-origin:50% 50%;
  1282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1283. font-weight:400;
  1284. font-style:normal;
  1285. font-size:12px;
  1286. color:#D9001B;
  1287. line-height:25px;
  1288. }
  1289. #u47829 .text {
  1290. position:absolute;
  1291. align-self:flex-start;
  1292. padding:0px 0px 0px 0px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u47829_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. }
  1301. #u47830 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:0px;
  1305. top:0px;
  1306. width:0px;
  1307. height:0px;
  1308. }
  1309. #u47831_div {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:0px;
  1313. top:0px;
  1314. width:375px;
  1315. height:282px;
  1316. background:inherit;
  1317. background-color:rgba(255, 255, 255, 0.996078431372549);
  1318. border-top:0px;
  1319. border-radius:28px;
  1320. border-top-left-radius:0px;
  1321. border-top-right-radius:0px;
  1322. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  1323. transition:none;
  1324. }
  1325. #u47831 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:482px;
  1329. top:158px;
  1330. width:375px;
  1331. height:282px;
  1332. display:flex;
  1333. transition:none;
  1334. transform-origin:50% 50%;
  1335. }
  1336. #u47831 .text {
  1337. position:absolute;
  1338. align-self:center;
  1339. padding:2px 2px 2px 2px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u47831_text {
  1344. border-width:0px;
  1345. word-wrap:break-word;
  1346. text-transform:none;
  1347. visibility:hidden;
  1348. }
  1349. #u47832_div {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:0px;
  1353. top:0px;
  1354. width:37px;
  1355. height:30px;
  1356. background:inherit;
  1357. background-color:rgba(255, 255, 255, 0);
  1358. border-left:0px;
  1359. border-top:0px;
  1360. border-right:0px;
  1361. border-radius:0px;
  1362. border-bottom-right-radius:0px;
  1363. border-bottom-left-radius:0px;
  1364. filter:drop-shadow(none);
  1365. transition:none;
  1366. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1367. font-weight:500;
  1368. font-style:normal;
  1369. font-size:18px;
  1370. line-height:30px;
  1371. }
  1372. #u47832 {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:502px;
  1376. top:171px;
  1377. width:37px;
  1378. height:30px;
  1379. display:flex;
  1380. transition:none;
  1381. transform-origin:50% 50%;
  1382. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1383. font-weight:500;
  1384. font-style:normal;
  1385. font-size:18px;
  1386. line-height:30px;
  1387. }
  1388. #u47832 .text {
  1389. position:absolute;
  1390. align-self:flex-start;
  1391. padding:0px 0px 0px 0px;
  1392. box-sizing:border-box;
  1393. width:100%;
  1394. }
  1395. #u47832_text {
  1396. border-width:0px;
  1397. white-space:nowrap;
  1398. text-transform:none;
  1399. }
  1400. #u47833 {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:0px;
  1404. top:0px;
  1405. width:0px;
  1406. height:0px;
  1407. }
  1408. #u47834_div {
  1409. border-width:0px;
  1410. position:absolute;
  1411. left:0px;
  1412. top:0px;
  1413. width:375px;
  1414. height:60px;
  1415. background:inherit;
  1416. background-color:rgba(255, 255, 255, 1);
  1417. box-sizing:border-box;
  1418. border-width:1px;
  1419. border-style:solid;
  1420. border-color:rgba(242, 242, 242, 1);
  1421. border-radius:20px;
  1422. border-top-left-radius:0px;
  1423. border-top-right-radius:0px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. }
  1427. #u47834 {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:482px;
  1431. top:380px;
  1432. width:375px;
  1433. height:60px;
  1434. display:flex;
  1435. transition:none;
  1436. transform-origin:50% 50%;
  1437. }
  1438. #u47834 .text {
  1439. position:absolute;
  1440. align-self:center;
  1441. padding:2px 2px 2px 2px;
  1442. box-sizing:border-box;
  1443. width:100%;
  1444. }
  1445. #u47834_text {
  1446. border-width:0px;
  1447. word-wrap:break-word;
  1448. text-transform:none;
  1449. visibility:hidden;
  1450. }
  1451. #u47835_div {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:0px;
  1455. top:0px;
  1456. width:160px;
  1457. height:40px;
  1458. background:inherit;
  1459. background-color:rgba(0, 137, 254, 1);
  1460. border-radius:63px;
  1461. filter:drop-shadow(none);
  1462. transition:none;
  1463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1464. font-weight:400;
  1465. font-style:normal;
  1466. font-size:14px;
  1467. color:#FFFFFF;
  1468. }
  1469. #u47835 {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:677px;
  1473. top:390px;
  1474. width:160px;
  1475. height:40px;
  1476. display:flex;
  1477. transition:none;
  1478. transform-origin:50% 50%;
  1479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1480. font-weight:400;
  1481. font-style:normal;
  1482. font-size:14px;
  1483. color:#FFFFFF;
  1484. }
  1485. #u47835 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u47835_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. }
  1497. #u47836_div {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:160px;
  1503. height:40px;
  1504. background:inherit;
  1505. background-color:rgba(255, 255, 255, 1);
  1506. box-sizing:border-box;
  1507. border-width:1px;
  1508. border-style:solid;
  1509. border-color:rgba(121, 121, 121, 1);
  1510. border-radius:63px;
  1511. filter:drop-shadow(none);
  1512. transition:none;
  1513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1514. font-weight:400;
  1515. font-style:normal;
  1516. font-size:14px;
  1517. }
  1518. #u47836 {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:502px;
  1522. top:390px;
  1523. width:160px;
  1524. height:40px;
  1525. display:flex;
  1526. transition:none;
  1527. transform-origin:50% 50%;
  1528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1529. font-weight:400;
  1530. font-style:normal;
  1531. font-size:14px;
  1532. }
  1533. #u47836 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u47836_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. }
  1545. #u47837_div {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:340px;
  1551. height:92px;
  1552. background:inherit;
  1553. background-color:rgba(255, 255, 255, 1);
  1554. box-sizing:border-box;
  1555. border-width:1px;
  1556. border-style:solid;
  1557. border-color:rgba(215, 215, 215, 1);
  1558. border-radius:4px;
  1559. filter:drop-shadow(none);
  1560. transition:none;
  1561. }
  1562. #u47837 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:502px;
  1566. top:211px;
  1567. width:340px;
  1568. height:92px;
  1569. display:flex;
  1570. transition:none;
  1571. transform-origin:50% 50%;
  1572. }
  1573. #u47837 .text {
  1574. position:absolute;
  1575. align-self:center;
  1576. padding:2px 2px 2px 2px;
  1577. box-sizing:border-box;
  1578. width:100%;
  1579. }
  1580. #u47837_text {
  1581. border-width:0px;
  1582. word-wrap:break-word;
  1583. text-transform:none;
  1584. visibility:hidden;
  1585. }
  1586. #u47838_div {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:127px;
  1592. height:30px;
  1593. background:inherit;
  1594. background-color:rgba(255, 255, 255, 0);
  1595. border-left:0px;
  1596. border-top:0px;
  1597. border-right:0px;
  1598. border-radius:0px;
  1599. border-bottom-right-radius:0px;
  1600. border-bottom-left-radius:0px;
  1601. filter:drop-shadow(none);
  1602. transition:none;
  1603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1604. font-weight:400;
  1605. font-style:normal;
  1606. font-size:14px;
  1607. color:#AAAAAA;
  1608. line-height:30px;
  1609. }
  1610. #u47838 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:511px;
  1614. top:219px;
  1615. width:127px;
  1616. height:30px;
  1617. display:flex;
  1618. transition:none;
  1619. transform-origin:50% 50%;
  1620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1621. font-weight:400;
  1622. font-style:normal;
  1623. font-size:14px;
  1624. color:#AAAAAA;
  1625. line-height:30px;
  1626. }
  1627. #u47838 .text {
  1628. position:absolute;
  1629. align-self:center;
  1630. padding:0px 0px 0px 0px;
  1631. box-sizing:border-box;
  1632. width:100%;
  1633. }
  1634. #u47838_text {
  1635. border-width:0px;
  1636. white-space:nowrap;
  1637. text-transform:none;
  1638. }
  1639. #u47839 {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:0px;
  1643. top:0px;
  1644. width:0px;
  1645. height:0px;
  1646. }
  1647. #u47840_div {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:0px;
  1651. top:0px;
  1652. width:375px;
  1653. height:282px;
  1654. background:inherit;
  1655. background-color:rgba(255, 255, 255, 0.996078431372549);
  1656. border-top:0px;
  1657. border-radius:28px;
  1658. border-top-left-radius:0px;
  1659. border-top-right-radius:0px;
  1660. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  1661. transition:none;
  1662. }
  1663. #u47840 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:482px;
  1667. top:491px;
  1668. width:375px;
  1669. height:282px;
  1670. display:flex;
  1671. transition:none;
  1672. transform-origin:50% 50%;
  1673. }
  1674. #u47840 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 2px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u47840_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. visibility:hidden;
  1686. }
  1687. #u47841_div {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:37px;
  1693. height:30px;
  1694. background:inherit;
  1695. background-color:rgba(255, 255, 255, 0);
  1696. border-left:0px;
  1697. border-top:0px;
  1698. border-right:0px;
  1699. border-radius:0px;
  1700. border-bottom-right-radius:0px;
  1701. border-bottom-left-radius:0px;
  1702. filter:drop-shadow(none);
  1703. transition:none;
  1704. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1705. font-weight:500;
  1706. font-style:normal;
  1707. font-size:18px;
  1708. line-height:30px;
  1709. }
  1710. #u47841 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:502px;
  1714. top:504px;
  1715. width:37px;
  1716. height:30px;
  1717. display:flex;
  1718. transition:none;
  1719. transform-origin:50% 50%;
  1720. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1721. font-weight:500;
  1722. font-style:normal;
  1723. font-size:18px;
  1724. line-height:30px;
  1725. }
  1726. #u47841 .text {
  1727. position:absolute;
  1728. align-self:flex-start;
  1729. padding:0px 0px 0px 0px;
  1730. box-sizing:border-box;
  1731. width:100%;
  1732. }
  1733. #u47841_text {
  1734. border-width:0px;
  1735. white-space:nowrap;
  1736. text-transform:none;
  1737. }
  1738. #u47842 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:0px;
  1744. height:0px;
  1745. }
  1746. #u47843_div {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:375px;
  1752. height:60px;
  1753. background:inherit;
  1754. background-color:rgba(255, 255, 255, 1);
  1755. box-sizing:border-box;
  1756. border-width:1px;
  1757. border-style:solid;
  1758. border-color:rgba(242, 242, 242, 1);
  1759. border-radius:20px;
  1760. border-top-left-radius:0px;
  1761. border-top-right-radius:0px;
  1762. filter:drop-shadow(none);
  1763. transition:none;
  1764. }
  1765. #u47843 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:482px;
  1769. top:713px;
  1770. width:375px;
  1771. height:60px;
  1772. display:flex;
  1773. transition:none;
  1774. transform-origin:50% 50%;
  1775. }
  1776. #u47843 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u47843_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. visibility:hidden;
  1788. }
  1789. #u47844_div {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:160px;
  1795. height:40px;
  1796. background:inherit;
  1797. background-color:rgba(0, 137, 254, 1);
  1798. border-radius:63px;
  1799. filter:drop-shadow(none);
  1800. transition:none;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. font-size:14px;
  1805. color:#FFFFFF;
  1806. }
  1807. #u47844 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:677px;
  1811. top:723px;
  1812. width:160px;
  1813. height:40px;
  1814. display:flex;
  1815. transition:none;
  1816. transform-origin:50% 50%;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:14px;
  1821. color:#FFFFFF;
  1822. }
  1823. #u47844 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:2px 2px 2px 2px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u47844_text {
  1831. border-width:0px;
  1832. word-wrap:break-word;
  1833. text-transform:none;
  1834. }
  1835. #u47845_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:160px;
  1841. height:40px;
  1842. background:inherit;
  1843. background-color:rgba(255, 255, 255, 1);
  1844. box-sizing:border-box;
  1845. border-width:1px;
  1846. border-style:solid;
  1847. border-color:rgba(121, 121, 121, 1);
  1848. border-radius:63px;
  1849. filter:drop-shadow(none);
  1850. transition:none;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:14px;
  1855. }
  1856. #u47845 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:502px;
  1860. top:723px;
  1861. width:160px;
  1862. height:40px;
  1863. display:flex;
  1864. transition:none;
  1865. transform-origin:50% 50%;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:14px;
  1870. }
  1871. #u47845 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u47845_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. }
  1883. #u47846_div {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:340px;
  1889. height:92px;
  1890. background:inherit;
  1891. background-color:rgba(255, 255, 255, 1);
  1892. box-sizing:border-box;
  1893. border-width:1px;
  1894. border-style:solid;
  1895. border-color:rgba(215, 215, 215, 1);
  1896. border-radius:4px;
  1897. filter:drop-shadow(none);
  1898. transition:none;
  1899. }
  1900. #u47846 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:502px;
  1904. top:544px;
  1905. width:340px;
  1906. height:92px;
  1907. display:flex;
  1908. transition:none;
  1909. transform-origin:50% 50%;
  1910. }
  1911. #u47846 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 2px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u47846_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. visibility:hidden;
  1923. }
  1924. #u47847_div {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:169px;
  1930. height:30px;
  1931. background:inherit;
  1932. background-color:rgba(255, 255, 255, 0);
  1933. border-left:0px;
  1934. border-top:0px;
  1935. border-right:0px;
  1936. border-radius:0px;
  1937. border-bottom-right-radius:0px;
  1938. border-bottom-left-radius:0px;
  1939. filter:drop-shadow(none);
  1940. transition:none;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:14px;
  1945. color:#AAAAAA;
  1946. line-height:30px;
  1947. }
  1948. #u47847 {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:511px;
  1952. top:552px;
  1953. width:169px;
  1954. height:30px;
  1955. display:flex;
  1956. transition:none;
  1957. transform-origin:50% 50%;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. font-size:14px;
  1962. color:#AAAAAA;
  1963. line-height:30px;
  1964. }
  1965. #u47847 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:0px 0px 0px 0px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u47847_text {
  1973. border-width:0px;
  1974. white-space:nowrap;
  1975. text-transform:none;
  1976. }
  1977. #u47848_div {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:43px;
  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. #u47848 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:149px;
  2004. top:150px;
  2005. width:43px;
  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. #u47848 .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. #u47848_text {
  2024. border-width:0px;
  2025. white-space:nowrap;
  2026. text-transform:none;
  2027. }
  2028. #u47849_div {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:99px;
  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. #u47849 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:50px;
  2055. top:150px;
  2056. width:99px;
  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. #u47849 .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. #u47849_text {
  2075. border-width:0px;
  2076. white-space:nowrap;
  2077. text-transform:none;
  2078. }
  2079. #u47850 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:0px;
  2085. height:0px;
  2086. }
  2087. #u47851_div {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:348px;
  2093. height:161px;
  2094. background:inherit;
  2095. background-color:rgba(242, 242, 242, 1);
  2096. box-sizing:border-box;
  2097. border-width:1px;
  2098. border-style:solid;
  2099. border-color:rgba(242, 242, 242, 1);
  2100. border-radius:5px;
  2101. border-top-left-radius:0px;
  2102. border-top-right-radius:0px;
  2103. filter:drop-shadow(none);
  2104. transition:none;
  2105. }
  2106. #u47851 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:42px;
  2110. top:223px;
  2111. width:348px;
  2112. height:161px;
  2113. display:flex;
  2114. filter:blur(4px);
  2115. backdrop-filter:blur(4px);
  2116. transition:none;
  2117. transform-origin:50% 50%;
  2118. }
  2119. #u47851 .text {
  2120. position:absolute;
  2121. align-self:center;
  2122. padding:2px 2px 2px 2px;
  2123. box-sizing:border-box;
  2124. width:100%;
  2125. }
  2126. #u47851_text {
  2127. border-width:0px;
  2128. word-wrap:break-word;
  2129. text-transform:none;
  2130. visibility:hidden;
  2131. }
  2132. #u47852_div {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:57px;
  2138. height:30px;
  2139. background:inherit;
  2140. background-color:rgba(255, 255, 255, 0);
  2141. border-left:0px;
  2142. border-top:0px;
  2143. border-right:0px;
  2144. border-radius:0px;
  2145. border-bottom-right-radius:0px;
  2146. border-bottom-left-radius:0px;
  2147. filter:drop-shadow(none);
  2148. transition:none;
  2149. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2150. font-weight:500;
  2151. font-style:normal;
  2152. font-size:14px;
  2153. line-height:30px;
  2154. }
  2155. #u47852 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:56px;
  2159. top:233px;
  2160. width:57px;
  2161. height:30px;
  2162. display:flex;
  2163. transition:none;
  2164. transform-origin:50% 50%;
  2165. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2166. font-weight:500;
  2167. font-style:normal;
  2168. font-size:14px;
  2169. line-height:30px;
  2170. }
  2171. #u47852 .text {
  2172. position:absolute;
  2173. align-self:flex-start;
  2174. padding:0px 0px 0px 0px;
  2175. box-sizing:border-box;
  2176. width:100%;
  2177. }
  2178. #u47852_text {
  2179. border-width:0px;
  2180. white-space:nowrap;
  2181. text-transform:none;
  2182. }
  2183. #u47853_div {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:25px;
  2189. height:30px;
  2190. background:inherit;
  2191. background-color:rgba(255, 255, 255, 0);
  2192. border-left:0px;
  2193. border-top:0px;
  2194. border-right:0px;
  2195. border-radius:0px;
  2196. border-bottom-right-radius:0px;
  2197. border-bottom-left-radius:0px;
  2198. filter:drop-shadow(none);
  2199. transition:none;
  2200. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2201. font-weight:500;
  2202. font-style:normal;
  2203. font-size:12px;
  2204. line-height:30px;
  2205. }
  2206. #u47853 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:230px;
  2210. top:273px;
  2211. width:25px;
  2212. height:30px;
  2213. display:flex;
  2214. transition:none;
  2215. transform-origin:50% 50%;
  2216. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2217. font-weight:500;
  2218. font-style:normal;
  2219. font-size:12px;
  2220. line-height:30px;
  2221. }
  2222. #u47853 .text {
  2223. position:absolute;
  2224. align-self:flex-start;
  2225. padding:0px 0px 0px 0px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u47853_text {
  2230. border-width:0px;
  2231. white-space:nowrap;
  2232. text-transform:none;
  2233. }
  2234. #u47854_div {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:61px;
  2240. height:30px;
  2241. background:inherit;
  2242. background-color:rgba(255, 255, 255, 0);
  2243. border-left:0px;
  2244. border-top:0px;
  2245. border-right:0px;
  2246. border-radius:0px;
  2247. border-bottom-right-radius:0px;
  2248. border-bottom-left-radius:0px;
  2249. filter:drop-shadow(none);
  2250. transition:none;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:12px;
  2255. line-height:30px;
  2256. }
  2257. #u47854 {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:169px;
  2261. top:273px;
  2262. width:61px;
  2263. height:30px;
  2264. display:flex;
  2265. transition:none;
  2266. transform-origin:50% 50%;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:12px;
  2271. line-height:30px;
  2272. }
  2273. #u47854 .text {
  2274. position:absolute;
  2275. align-self:flex-start;
  2276. padding:0px 0px 0px 0px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u47854_text {
  2281. border-width:0px;
  2282. white-space:nowrap;
  2283. text-transform:none;
  2284. }
  2285. #u47855_div {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:71px;
  2291. height:30px;
  2292. background:inherit;
  2293. background-color:rgba(255, 255, 255, 0);
  2294. border-left:0px;
  2295. border-top:0px;
  2296. border-right:0px;
  2297. border-radius:0px;
  2298. border-bottom-right-radius:0px;
  2299. border-bottom-left-radius:0px;
  2300. filter:drop-shadow(none);
  2301. transition:none;
  2302. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2303. font-weight:500;
  2304. font-style:normal;
  2305. font-size:12px;
  2306. line-height:30px;
  2307. }
  2308. #u47855 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:230px;
  2312. top:303px;
  2313. width:71px;
  2314. height:30px;
  2315. display:flex;
  2316. transition:none;
  2317. transform-origin:50% 50%;
  2318. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2319. font-weight:500;
  2320. font-style:normal;
  2321. font-size:12px;
  2322. line-height:30px;
  2323. }
  2324. #u47855 .text {
  2325. position:absolute;
  2326. align-self:flex-start;
  2327. padding:0px 0px 0px 0px;
  2328. box-sizing:border-box;
  2329. width:100%;
  2330. }
  2331. #u47855_text {
  2332. border-width:0px;
  2333. white-space:nowrap;
  2334. text-transform:none;
  2335. }
  2336. #u47856_div {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:61px;
  2342. height:30px;
  2343. background:inherit;
  2344. background-color:rgba(255, 255, 255, 0);
  2345. border-left:0px;
  2346. border-top:0px;
  2347. border-right:0px;
  2348. border-radius:0px;
  2349. border-bottom-right-radius:0px;
  2350. border-bottom-left-radius:0px;
  2351. filter:drop-shadow(none);
  2352. transition:none;
  2353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:12px;
  2357. line-height:30px;
  2358. }
  2359. #u47856 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:169px;
  2363. top:303px;
  2364. width:61px;
  2365. height:30px;
  2366. display:flex;
  2367. transition:none;
  2368. transform-origin:50% 50%;
  2369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. font-size:12px;
  2373. line-height:30px;
  2374. }
  2375. #u47856 .text {
  2376. position:absolute;
  2377. align-self:flex-start;
  2378. padding:0px 0px 0px 0px;
  2379. box-sizing:border-box;
  2380. width:100%;
  2381. }
  2382. #u47856_text {
  2383. border-width:0px;
  2384. white-space:nowrap;
  2385. text-transform:none;
  2386. }
  2387. #u47857 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:56px;
  2391. top:273px;
  2392. width:93px;
  2393. height:97px;
  2394. display:flex;
  2395. transition:none;
  2396. }
  2397. #u47857 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u47857_img {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:93px;
  2410. height:97px;
  2411. }
  2412. #u47857_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. visibility:hidden;
  2417. }
  2418. #u47858_div {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:49px;
  2424. height:30px;
  2425. background:inherit;
  2426. background-color:rgba(255, 255, 255, 0);
  2427. border-left:0px;
  2428. border-top:0px;
  2429. border-right:0px;
  2430. border-radius:0px;
  2431. border-bottom-right-radius:0px;
  2432. border-bottom-left-radius:0px;
  2433. filter:drop-shadow(none);
  2434. transition:none;
  2435. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2436. font-weight:500;
  2437. font-style:normal;
  2438. font-size:12px;
  2439. line-height:30px;
  2440. }
  2441. #u47858 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:230px;
  2445. top:333px;
  2446. width:49px;
  2447. height:30px;
  2448. display:flex;
  2449. transition:none;
  2450. transform-origin:50% 50%;
  2451. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2452. font-weight:500;
  2453. font-style:normal;
  2454. font-size:12px;
  2455. line-height:30px;
  2456. }
  2457. #u47858 .text {
  2458. position:absolute;
  2459. align-self:flex-start;
  2460. padding:0px 0px 0px 0px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u47858_text {
  2465. border-width:0px;
  2466. white-space:nowrap;
  2467. text-transform:none;
  2468. }
  2469. #u47859_div {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:61px;
  2475. height:30px;
  2476. background:inherit;
  2477. background-color:rgba(255, 255, 255, 0);
  2478. border-left:0px;
  2479. border-top:0px;
  2480. border-right:0px;
  2481. border-radius:0px;
  2482. border-bottom-right-radius:0px;
  2483. border-bottom-left-radius:0px;
  2484. filter:drop-shadow(none);
  2485. transition:none;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:12px;
  2490. line-height:30px;
  2491. }
  2492. #u47859 {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:169px;
  2496. top:333px;
  2497. width:61px;
  2498. height:30px;
  2499. display:flex;
  2500. transition:none;
  2501. transform-origin:50% 50%;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:12px;
  2506. line-height:30px;
  2507. }
  2508. #u47859 .text {
  2509. position:absolute;
  2510. align-self:flex-start;
  2511. padding:0px 0px 0px 0px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u47859_text {
  2516. border-width:0px;
  2517. white-space:nowrap;
  2518. text-transform:none;
  2519. }
  2520. #u47860_div {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:143px;
  2526. height:30px;
  2527. background:inherit;
  2528. background-color:rgba(255, 255, 255, 0);
  2529. border-left:0px;
  2530. border-top:0px;
  2531. border-right:0px;
  2532. border-radius:0px;
  2533. border-bottom-right-radius:0px;
  2534. border-bottom-left-radius:0px;
  2535. filter:drop-shadow(none);
  2536. transition:none;
  2537. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2538. font-weight:500;
  2539. font-style:normal;
  2540. font-size:14px;
  2541. line-height:30px;
  2542. }
  2543. #u47860 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:121px;
  2547. top:180px;
  2548. width:143px;
  2549. height:30px;
  2550. display:flex;
  2551. transition:none;
  2552. transform-origin:50% 50%;
  2553. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2554. font-weight:500;
  2555. font-style:normal;
  2556. font-size:14px;
  2557. line-height:30px;
  2558. }
  2559. #u47860 .text {
  2560. position:absolute;
  2561. align-self:flex-start;
  2562. padding:0px 0px 0px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u47860_text {
  2567. border-width:0px;
  2568. white-space:nowrap;
  2569. text-transform:none;
  2570. }
  2571. #u47861_div {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:71px;
  2577. height:30px;
  2578. background:inherit;
  2579. background-color:rgba(255, 255, 255, 0);
  2580. border-left:0px;
  2581. border-top:0px;
  2582. border-right:0px;
  2583. border-radius:0px;
  2584. border-bottom-right-radius:0px;
  2585. border-bottom-left-radius:0px;
  2586. filter:drop-shadow(none);
  2587. transition:none;
  2588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:14px;
  2592. line-height:30px;
  2593. }
  2594. #u47861 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:50px;
  2598. top:180px;
  2599. width:71px;
  2600. height:30px;
  2601. display:flex;
  2602. transition:none;
  2603. transform-origin:50% 50%;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:14px;
  2608. line-height:30px;
  2609. }
  2610. #u47861 .text {
  2611. position:absolute;
  2612. align-self:flex-start;
  2613. padding:0px 0px 0px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u47861_text {
  2618. border-width:0px;
  2619. white-space:nowrap;
  2620. text-transform:none;
  2621. }
  2622. #u47862 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:212px;
  2626. top:427px;
  2627. width:140px;
  2628. height:90px;
  2629. display:flex;
  2630. transition:none;
  2631. }
  2632. #u47862 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:2px 2px 2px 2px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u47862_img {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:140px;
  2645. height:90px;
  2646. }
  2647. #u47862_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u47863_div {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:71px;
  2659. height:30px;
  2660. background:inherit;
  2661. background-color:rgba(255, 255, 255, 0);
  2662. border-left:0px;
  2663. border-top:0px;
  2664. border-right:0px;
  2665. border-radius:0px;
  2666. border-bottom-right-radius:0px;
  2667. border-bottom-left-radius:0px;
  2668. filter:drop-shadow(none);
  2669. transition:none;
  2670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2671. font-weight:400;
  2672. font-style:normal;
  2673. font-size:14px;
  2674. line-height:30px;
  2675. }
  2676. #u47863 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:42px;
  2680. top:397px;
  2681. width:71px;
  2682. height:30px;
  2683. display:flex;
  2684. transition:none;
  2685. transform-origin:50% 50%;
  2686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2687. font-weight:400;
  2688. font-style:normal;
  2689. font-size:14px;
  2690. line-height:30px;
  2691. }
  2692. #u47863 .text {
  2693. position:absolute;
  2694. align-self:flex-start;
  2695. padding:0px 0px 0px 0px;
  2696. box-sizing:border-box;
  2697. width:100%;
  2698. }
  2699. #u47863_text {
  2700. border-width:0px;
  2701. white-space:nowrap;
  2702. text-transform:none;
  2703. }
  2704. #u47864 {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:42px;
  2708. top:427px;
  2709. width:140px;
  2710. height:90px;
  2711. display:flex;
  2712. transition:none;
  2713. }
  2714. #u47864 .text {
  2715. position:absolute;
  2716. align-self:center;
  2717. padding:2px 2px 2px 2px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u47864_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:140px;
  2727. height:90px;
  2728. }
  2729. #u47864_text {
  2730. border-width:0px;
  2731. word-wrap:break-word;
  2732. text-transform:none;
  2733. visibility:hidden;
  2734. }
  2735. #u47865 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:157px;
  2739. top:568px;
  2740. width:104px;
  2741. height:75px;
  2742. display:flex;
  2743. transition:none;
  2744. }
  2745. #u47865 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 2px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u47865_img {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:104px;
  2758. height:75px;
  2759. }
  2760. #u47865_text {
  2761. border-width:0px;
  2762. word-wrap:break-word;
  2763. text-transform:none;
  2764. visibility:hidden;
  2765. }
  2766. #u47866_div {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:57px;
  2772. height:30px;
  2773. background:inherit;
  2774. background-color:rgba(255, 255, 255, 0);
  2775. border-left:0px;
  2776. border-top:0px;
  2777. border-right:0px;
  2778. border-radius:0px;
  2779. border-bottom-right-radius:0px;
  2780. border-bottom-left-radius:0px;
  2781. filter:drop-shadow(none);
  2782. transition:none;
  2783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:14px;
  2787. line-height:30px;
  2788. }
  2789. #u47866 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:42px;
  2793. top:537px;
  2794. width:57px;
  2795. height:30px;
  2796. display:flex;
  2797. transition:none;
  2798. transform-origin:50% 50%;
  2799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:14px;
  2803. line-height:30px;
  2804. }
  2805. #u47866 .text {
  2806. position:absolute;
  2807. align-self:flex-start;
  2808. padding:0px 0px 0px 0px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u47866_text {
  2813. border-width:0px;
  2814. white-space:nowrap;
  2815. text-transform:none;
  2816. }
  2817. #u47867 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:42px;
  2821. top:567px;
  2822. width:105px;
  2823. height:76px;
  2824. display:flex;
  2825. transition:none;
  2826. }
  2827. #u47867 .text {
  2828. position:absolute;
  2829. align-self:center;
  2830. padding:2px 2px 2px 2px;
  2831. box-sizing:border-box;
  2832. width:100%;
  2833. }
  2834. #u47867_img {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:105px;
  2840. height:76px;
  2841. }
  2842. #u47867_text {
  2843. border-width:0px;
  2844. word-wrap:break-word;
  2845. text-transform:none;
  2846. visibility:hidden;
  2847. }
  2848. #u47868 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:0px;
  2854. height:0px;
  2855. }
  2856. #u47869_div {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:346px;
  2862. height:198px;
  2863. background:inherit;
  2864. background-color:rgba(255, 255, 255, 1);
  2865. border-radius:9px;
  2866. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  2867. transition:none;
  2868. }
  2869. #u47869 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:907px;
  2873. top:195px;
  2874. width:346px;
  2875. height:198px;
  2876. display:flex;
  2877. transition:none;
  2878. transform-origin:50% 50%;
  2879. }
  2880. #u47869 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 2px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u47869_text {
  2888. border-width:0px;
  2889. word-wrap:break-word;
  2890. text-transform:none;
  2891. visibility:hidden;
  2892. }
  2893. #u47870_div {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:121px;
  2899. height:33px;
  2900. background:inherit;
  2901. background-color:rgba(255, 255, 255, 0);
  2902. border-radius:0px;
  2903. filter:drop-shadow(none);
  2904. transition:none;
  2905. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2906. font-weight:650;
  2907. font-style:normal;
  2908. font-size:24px;
  2909. text-align:center;
  2910. }
  2911. #u47870 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:1020px;
  2915. top:219px;
  2916. width:121px;
  2917. height:33px;
  2918. display:flex;
  2919. transition:none;
  2920. transform-origin:50% 50%;
  2921. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2922. font-weight:650;
  2923. font-style:normal;
  2924. font-size:24px;
  2925. text-align:center;
  2926. }
  2927. #u47870 .text {
  2928. position:absolute;
  2929. align-self:center;
  2930. padding:0px 0px 0px 0px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u47870_text {
  2935. border-width:0px;
  2936. white-space:nowrap;
  2937. text-transform:none;
  2938. }
  2939. #u47871_div {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:173px;
  2945. height:60px;
  2946. background:inherit;
  2947. background-color:rgba(255, 255, 255, 0);
  2948. box-sizing:border-box;
  2949. border-width:1px;
  2950. border-style:solid;
  2951. border-color:rgba(215, 215, 215, 1);
  2952. border-left:0px;
  2953. border-bottom:0px;
  2954. border-radius:0px;
  2955. border-top-left-radius:0px;
  2956. border-bottom-right-radius:0px;
  2957. filter:drop-shadow(none);
  2958. transition:none;
  2959. font-family:'ArialMT', 'Arial', sans-serif;
  2960. font-weight:400;
  2961. font-style:normal;
  2962. font-size:22px;
  2963. color:#0099FF;
  2964. text-align:center;
  2965. }
  2966. #u47871 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:906px;
  2970. top:333px;
  2971. width:173px;
  2972. height:60px;
  2973. display:flex;
  2974. transition:none;
  2975. transform-origin:50% 50%;
  2976. font-family:'ArialMT', 'Arial', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. font-size:22px;
  2980. color:#0099FF;
  2981. text-align:center;
  2982. }
  2983. #u47871 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:0px 0px 0px 0px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u47871_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. }
  2995. #u47872_div {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:300px;
  3001. height:25px;
  3002. background:inherit;
  3003. background-color:rgba(255, 255, 255, 0);
  3004. border-radius:0px;
  3005. filter:drop-shadow(none);
  3006. transition:none;
  3007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3008. font-weight:400;
  3009. font-style:normal;
  3010. font-size:18px;
  3011. color:#555555;
  3012. text-align:center;
  3013. }
  3014. #u47872 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:930px;
  3018. top:278px;
  3019. width:300px;
  3020. height:25px;
  3021. display:flex;
  3022. transition:none;
  3023. transform-origin:50% 50%;
  3024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3025. font-weight:400;
  3026. font-style:normal;
  3027. font-size:18px;
  3028. color:#555555;
  3029. text-align:center;
  3030. }
  3031. #u47872 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:0px 0px 0px 0px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u47872_text {
  3039. border-width:0px;
  3040. word-wrap:break-word;
  3041. text-transform:none;
  3042. }
  3043. #u47873_div {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:173px;
  3049. height:60px;
  3050. background:inherit;
  3051. background-color:rgba(255, 255, 255, 0);
  3052. box-sizing:border-box;
  3053. border-width:1px;
  3054. border-style:solid;
  3055. border-color:rgba(215, 215, 215, 1);
  3056. border-left:0px;
  3057. border-right:0px;
  3058. border-bottom:0px;
  3059. border-radius:0px;
  3060. border-top-left-radius:0px;
  3061. border-top-right-radius:0px;
  3062. filter:drop-shadow(none);
  3063. transition:none;
  3064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. font-size:22px;
  3068. color:#0099FF;
  3069. text-align:center;
  3070. }
  3071. #u47873 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:1079px;
  3075. top:333px;
  3076. width:173px;
  3077. height:60px;
  3078. display:flex;
  3079. transition:none;
  3080. transform-origin:50% 50%;
  3081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:22px;
  3085. color:#0099FF;
  3086. text-align:center;
  3087. }
  3088. #u47873 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:0px 0px 0px 0px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u47873_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. }