styles.css 57 KB

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