styles.css 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:886px;
  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. #u138051_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u138051 {
  28. border-width:0px;
  29. position:absolute;
  30. left:453px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u138051 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u138051_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u138052_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. #u138052 {
  73. border-width:0px;
  74. position:absolute;
  75. left:482px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u138052 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u138052_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u138053 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u138054_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. #u138054 {
  121. border-width:0px;
  122. position:absolute;
  123. left:762px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u138054 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u138054_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u138055 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u138056_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u138056 {
  159. border-width:0px;
  160. position:absolute;
  161. left:825px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u138056 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u138056_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u138057_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u138057 {
  189. border-width:0px;
  190. position:absolute;
  191. left:831px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u138057 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u138057_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u138058 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u138059_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u138059 {
  227. border-width:0px;
  228. position:absolute;
  229. left:776px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u138059 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u138059_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u138060_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u138060 {
  257. border-width:0px;
  258. position:absolute;
  259. left:792px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u138060 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u138060_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u138061_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u138061 {
  287. border-width:0px;
  288. position:absolute;
  289. left:783px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u138061 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u138061_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u138062_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u138062 {
  317. border-width:0px;
  318. position:absolute;
  319. left:800px;
  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. #u138062 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u138062_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u138063_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u138063 {
  351. border-width:0px;
  352. position:absolute;
  353. left:482px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u138063 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u138063_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u138064_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. #u138064 {
  393. border-width:0px;
  394. position:absolute;
  395. left:482px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u138064 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u138064_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u138065 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u138066_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u138066 {
  431. border-width:0px;
  432. position:absolute;
  433. left:522px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u138066 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u138066_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u138067_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. #u138067 {
  472. border-width:0px;
  473. position:absolute;
  474. left:522px;
  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. #u138067 .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. #u138067_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u138068 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u138069_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u138069 {
  513. border-width:0px;
  514. position:absolute;
  515. left:792px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u138069 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u138069_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u138070_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. #u138070 {
  554. border-width:0px;
  555. position:absolute;
  556. left:792px;
  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. #u138070 .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. #u138070_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u138071_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. #u138071 {
  594. border-width:0px;
  595. position:absolute;
  596. left:482px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u138071 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u138071_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u138072 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u138073_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u138073 {
  632. border-width:0px;
  633. position:absolute;
  634. left:704px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u138073 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u138073_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u138074_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. #u138074 {
  673. border-width:0px;
  674. position:absolute;
  675. left:698px;
  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. #u138074 .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. #u138074_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u138075 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u138076_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u138076 {
  714. border-width:0px;
  715. position:absolute;
  716. left:610px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u138076 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u138076_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u138077_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. #u138077 {
  755. border-width:0px;
  756. position:absolute;
  757. left:604px;
  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. #u138077 .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. #u138077_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u138078_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. #u138078 {
  801. border-width:0px;
  802. position:absolute;
  803. left:482px;
  804. top:105px;
  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. #u138078 .text {
  813. position:absolute;
  814. align-self:center;
  815. padding:2px 2px 2px 2px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u138078_text {
  820. border-width:0px;
  821. word-wrap:break-word;
  822. text-transform:none;
  823. visibility:hidden;
  824. }
  825. #u138079 {
  826. border-width:0px;
  827. position:absolute;
  828. left:0px;
  829. top:0px;
  830. width:0px;
  831. height:0px;
  832. }
  833. #u138080_img {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:11px;
  839. height:18px;
  840. }
  841. #u138080 {
  842. border-width:0px;
  843. position:absolute;
  844. left:499px;
  845. top:79px;
  846. width:11px;
  847. height:18px;
  848. display:flex;
  849. }
  850. #u138080 .text {
  851. position:absolute;
  852. align-self:center;
  853. padding:2px 2px 2px 2px;
  854. box-sizing:border-box;
  855. width:100%;
  856. }
  857. #u138080_text {
  858. border-width:0px;
  859. word-wrap:break-word;
  860. text-transform:none;
  861. visibility:hidden;
  862. }
  863. #u138081_div {
  864. border-width:0px;
  865. position:absolute;
  866. left:0px;
  867. top:0px;
  868. width:91px;
  869. height:40px;
  870. background:inherit;
  871. background-color:rgba(255, 255, 255, 0);
  872. border:none;
  873. border-left:0px;
  874. border-top:0px;
  875. border-right:0px;
  876. border-radius:0px;
  877. border-bottom-right-radius:0px;
  878. border-bottom-left-radius:0px;
  879. -moz-box-shadow:none;
  880. -webkit-box-shadow:none;
  881. box-shadow:none;
  882. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  883. font-weight:500;
  884. font-style:normal;
  885. font-size:18px;
  886. line-height:30px;
  887. }
  888. #u138081 {
  889. border-width:0px;
  890. position:absolute;
  891. left:527px;
  892. top:65px;
  893. width:91px;
  894. height:40px;
  895. display:flex;
  896. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  897. font-weight:500;
  898. font-style:normal;
  899. font-size:18px;
  900. line-height:30px;
  901. }
  902. #u138081 .text {
  903. position:absolute;
  904. align-self:center;
  905. padding:0px 0px 0px 0px;
  906. box-sizing:border-box;
  907. width:100%;
  908. }
  909. #u138081_text {
  910. border-width:0px;
  911. white-space:nowrap;
  912. text-transform:none;
  913. }
  914. #u138082_div {
  915. border-width:0px;
  916. position:absolute;
  917. left:0px;
  918. top:0px;
  919. width:300px;
  920. height:50px;
  921. background:inherit;
  922. background-color:rgba(255, 255, 255, 0);
  923. border:none;
  924. border-radius:0px;
  925. -moz-box-shadow:none;
  926. -webkit-box-shadow:none;
  927. box-shadow:none;
  928. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  929. font-weight:500;
  930. font-style:normal;
  931. font-size:18px;
  932. text-align:center;
  933. }
  934. #u138082 {
  935. border-width:0px;
  936. position:absolute;
  937. left:520px;
  938. top:272px;
  939. width:300px;
  940. height:50px;
  941. display:flex;
  942. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  943. font-weight:500;
  944. font-style:normal;
  945. font-size:18px;
  946. text-align:center;
  947. }
  948. #u138082 .text {
  949. position:absolute;
  950. align-self:flex-start;
  951. padding:0px 0px 0px 0px;
  952. box-sizing:border-box;
  953. width:100%;
  954. }
  955. #u138082_text {
  956. border-width:0px;
  957. word-wrap:break-word;
  958. text-transform:none;
  959. }
  960. #u138084_img {
  961. border-width:0px;
  962. position:absolute;
  963. left:0px;
  964. top:0px;
  965. width:433px;
  966. height:865px;
  967. }
  968. #u138084 {
  969. border-width:0px;
  970. position:absolute;
  971. left:0px;
  972. top:0px;
  973. width:433px;
  974. height:865px;
  975. display:flex;
  976. }
  977. #u138084 .text {
  978. position:absolute;
  979. align-self:center;
  980. padding:2px 2px 2px 2px;
  981. box-sizing:border-box;
  982. width:100%;
  983. }
  984. #u138084_text {
  985. border-width:0px;
  986. word-wrap:break-word;
  987. text-transform:none;
  988. visibility:hidden;
  989. }
  990. #u138085_div {
  991. border-width:0px;
  992. position:absolute;
  993. left:0px;
  994. top:0px;
  995. width:375px;
  996. height:40px;
  997. background:inherit;
  998. background-color:rgba(255, 255, 255, 1);
  999. box-sizing:border-box;
  1000. border-width:1px;
  1001. border-style:solid;
  1002. border-color:rgba(215, 215, 215, 1);
  1003. border-left:0px;
  1004. border-top:0px;
  1005. border-right:0px;
  1006. border-radius:0px;
  1007. border-bottom-right-radius:0px;
  1008. border-bottom-left-radius:0px;
  1009. -moz-box-shadow:none;
  1010. -webkit-box-shadow:none;
  1011. box-shadow:none;
  1012. }
  1013. #u138085 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:29px;
  1017. top:67px;
  1018. width:375px;
  1019. height:40px;
  1020. display:flex;
  1021. }
  1022. #u138085 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 2px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u138085_text {
  1030. border-width:0px;
  1031. word-wrap:break-word;
  1032. text-transform:none;
  1033. visibility:hidden;
  1034. }
  1035. #u138086 {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:0px;
  1041. height:0px;
  1042. }
  1043. #u138087_div {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:88px;
  1049. height:32px;
  1050. background:inherit;
  1051. background-color:rgba(255, 255, 255, 1);
  1052. box-sizing:border-box;
  1053. border-width:1px;
  1054. border-style:solid;
  1055. border-color:rgba(242, 242, 242, 1);
  1056. border-radius:33px;
  1057. -moz-box-shadow:none;
  1058. -webkit-box-shadow:none;
  1059. box-shadow:none;
  1060. }
  1061. #u138087 {
  1062. border-width:0px;
  1063. position:absolute;
  1064. left:309px;
  1065. top:71px;
  1066. width:88px;
  1067. height:32px;
  1068. display:flex;
  1069. }
  1070. #u138087 .text {
  1071. position:absolute;
  1072. align-self:center;
  1073. padding:2px 2px 2px 2px;
  1074. box-sizing:border-box;
  1075. width:100%;
  1076. }
  1077. #u138087_text {
  1078. border-width:0px;
  1079. word-wrap:break-word;
  1080. text-transform:none;
  1081. visibility:hidden;
  1082. }
  1083. #u138088 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:0px;
  1087. top:0px;
  1088. width:0px;
  1089. height:0px;
  1090. }
  1091. #u138089_img {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:0px;
  1095. top:0px;
  1096. width:18px;
  1097. height:18px;
  1098. }
  1099. #u138089 {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:372px;
  1103. top:78px;
  1104. width:18px;
  1105. height:18px;
  1106. display:flex;
  1107. }
  1108. #u138089 .text {
  1109. position:absolute;
  1110. align-self:center;
  1111. padding:2px 2px 2px 2px;
  1112. box-sizing:border-box;
  1113. width:100%;
  1114. }
  1115. #u138089_text {
  1116. border-width:0px;
  1117. word-wrap:break-word;
  1118. text-transform:none;
  1119. visibility:hidden;
  1120. }
  1121. #u138090_img {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:0px;
  1125. top:0px;
  1126. width:6px;
  1127. height:6px;
  1128. }
  1129. #u138090 {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:378px;
  1133. top:84px;
  1134. width:6px;
  1135. height:6px;
  1136. display:flex;
  1137. }
  1138. #u138090 .text {
  1139. position:absolute;
  1140. align-self:center;
  1141. padding:2px 2px 2px 2px;
  1142. box-sizing:border-box;
  1143. width:100%;
  1144. }
  1145. #u138090_text {
  1146. border-width:0px;
  1147. word-wrap:break-word;
  1148. text-transform:none;
  1149. visibility:hidden;
  1150. }
  1151. #u138091 {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:0px;
  1155. top:0px;
  1156. width:0px;
  1157. height:0px;
  1158. }
  1159. #u138092_img {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:0px;
  1163. top:0px;
  1164. width:5px;
  1165. height:5px;
  1166. }
  1167. #u138092 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:323px;
  1171. top:85px;
  1172. width:5px;
  1173. height:5px;
  1174. display:flex;
  1175. }
  1176. #u138092 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u138092_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. visibility:hidden;
  1188. }
  1189. #u138093_img {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:5px;
  1195. height:5px;
  1196. }
  1197. #u138093 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:339px;
  1201. top:85px;
  1202. width:5px;
  1203. height:5px;
  1204. display:flex;
  1205. }
  1206. #u138093 .text {
  1207. position:absolute;
  1208. align-self:center;
  1209. padding:2px 2px 2px 2px;
  1210. box-sizing:border-box;
  1211. width:100%;
  1212. }
  1213. #u138093_text {
  1214. border-width:0px;
  1215. word-wrap:break-word;
  1216. text-transform:none;
  1217. visibility:hidden;
  1218. }
  1219. #u138094_img {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:0px;
  1223. top:0px;
  1224. width:7px;
  1225. height:7px;
  1226. }
  1227. #u138094 {
  1228. border-width:0px;
  1229. position:absolute;
  1230. left:330px;
  1231. top:84px;
  1232. width:7px;
  1233. height:7px;
  1234. display:flex;
  1235. }
  1236. #u138094 .text {
  1237. position:absolute;
  1238. align-self:center;
  1239. padding:2px 2px 2px 2px;
  1240. box-sizing:border-box;
  1241. width:100%;
  1242. }
  1243. #u138094_text {
  1244. border-width:0px;
  1245. word-wrap:break-word;
  1246. text-transform:none;
  1247. visibility:hidden;
  1248. }
  1249. #u138095_img {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:0px;
  1253. top:0px;
  1254. width:19px;
  1255. height:2px;
  1256. }
  1257. #u138095 {
  1258. border-width:0px;
  1259. position:absolute;
  1260. left:347px;
  1261. top:87px;
  1262. width:18px;
  1263. height:1px;
  1264. display:flex;
  1265. -webkit-transform:rotate(90deg);
  1266. -moz-transform:rotate(90deg);
  1267. -ms-transform:rotate(90deg);
  1268. transform:rotate(90deg);
  1269. }
  1270. #u138095 .text {
  1271. position:absolute;
  1272. align-self:center;
  1273. padding:2px 2px 2px 2px;
  1274. box-sizing:border-box;
  1275. width:100%;
  1276. }
  1277. #u138095_text {
  1278. border-width:0px;
  1279. word-wrap:break-word;
  1280. text-transform:none;
  1281. visibility:hidden;
  1282. }
  1283. #u138096_img {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:0px;
  1287. top:0px;
  1288. width:375px;
  1289. height:44px;
  1290. }
  1291. #u138096 {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:29px;
  1295. top:24px;
  1296. width:375px;
  1297. height:44px;
  1298. display:flex;
  1299. }
  1300. #u138096 .text {
  1301. position:absolute;
  1302. align-self:center;
  1303. padding:2px 2px 2px 2px;
  1304. box-sizing:border-box;
  1305. width:100%;
  1306. }
  1307. #u138096_text {
  1308. border-width:0px;
  1309. word-wrap:break-word;
  1310. text-transform:none;
  1311. visibility:hidden;
  1312. }
  1313. #u138097_div {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:0px;
  1317. top:0px;
  1318. width:375px;
  1319. height:50px;
  1320. background:inherit;
  1321. background-color:rgba(255, 255, 255, 1);
  1322. box-sizing:border-box;
  1323. border-width:1px;
  1324. border-style:solid;
  1325. border-color:rgba(242, 242, 242, 1);
  1326. border-radius:26px;
  1327. border-top-left-radius:0px;
  1328. border-top-right-radius:0px;
  1329. -moz-box-shadow:none;
  1330. -webkit-box-shadow:none;
  1331. box-shadow:none;
  1332. }
  1333. #u138097 {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:29px;
  1337. top:788px;
  1338. width:375px;
  1339. height:50px;
  1340. display:flex;
  1341. }
  1342. #u138097 .text {
  1343. position:absolute;
  1344. align-self:center;
  1345. padding:2px 2px 2px 2px;
  1346. box-sizing:border-box;
  1347. width:100%;
  1348. }
  1349. #u138097_text {
  1350. border-width:0px;
  1351. word-wrap:break-word;
  1352. text-transform:none;
  1353. visibility:hidden;
  1354. }
  1355. #u138098 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:0px;
  1361. height:0px;
  1362. }
  1363. #u138099_img {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:24px;
  1369. height:24px;
  1370. }
  1371. #u138099 {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:69px;
  1375. top:792px;
  1376. width:24px;
  1377. height:24px;
  1378. display:flex;
  1379. font-size:8px;
  1380. }
  1381. #u138099 .text {
  1382. position:absolute;
  1383. align-self:center;
  1384. padding:2px 2px 2px 2px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u138099_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. }
  1393. #u138100_div {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:25px;
  1399. height:17px;
  1400. background:inherit;
  1401. background-color:rgba(255, 255, 255, 0);
  1402. border:none;
  1403. border-radius:0px;
  1404. -moz-box-shadow:none;
  1405. -webkit-box-shadow:none;
  1406. box-shadow:none;
  1407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:12px;
  1411. }
  1412. #u138100 {
  1413. border-width:0px;
  1414. position:absolute;
  1415. left:69px;
  1416. top:817px;
  1417. width:25px;
  1418. height:17px;
  1419. display:flex;
  1420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1421. font-weight:400;
  1422. font-style:normal;
  1423. font-size:12px;
  1424. }
  1425. #u138100 .text {
  1426. position:absolute;
  1427. align-self:flex-start;
  1428. padding:0px 0px 0px 0px;
  1429. box-sizing:border-box;
  1430. width:100%;
  1431. }
  1432. #u138100_text {
  1433. border-width:0px;
  1434. white-space:nowrap;
  1435. text-transform:none;
  1436. }
  1437. #u138101 {
  1438. border-width:0px;
  1439. position:absolute;
  1440. left:0px;
  1441. top:0px;
  1442. width:0px;
  1443. height:0px;
  1444. }
  1445. #u138102_img {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:0px;
  1449. top:0px;
  1450. width:24px;
  1451. height:24px;
  1452. }
  1453. #u138102 {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:339px;
  1457. top:794px;
  1458. width:24px;
  1459. height:24px;
  1460. display:flex;
  1461. font-size:8px;
  1462. }
  1463. #u138102 .text {
  1464. position:absolute;
  1465. align-self:center;
  1466. padding:2px 2px 2px 2px;
  1467. box-sizing:border-box;
  1468. width:100%;
  1469. }
  1470. #u138102_text {
  1471. border-width:0px;
  1472. word-wrap:break-word;
  1473. text-transform:none;
  1474. }
  1475. #u138103_div {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:25px;
  1481. height:17px;
  1482. background:inherit;
  1483. background-color:rgba(255, 255, 255, 0);
  1484. border:none;
  1485. border-radius:0px;
  1486. -moz-box-shadow:none;
  1487. -webkit-box-shadow:none;
  1488. box-shadow:none;
  1489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1490. font-weight:400;
  1491. font-style:normal;
  1492. font-size:12px;
  1493. }
  1494. #u138103 {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:339px;
  1498. top:819px;
  1499. width:25px;
  1500. height:17px;
  1501. display:flex;
  1502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1503. font-weight:400;
  1504. font-style:normal;
  1505. font-size:12px;
  1506. }
  1507. #u138103 .text {
  1508. position:absolute;
  1509. align-self:flex-start;
  1510. padding:0px 0px 0px 0px;
  1511. box-sizing:border-box;
  1512. width:100%;
  1513. }
  1514. #u138103_text {
  1515. border-width:0px;
  1516. white-space:nowrap;
  1517. text-transform:none;
  1518. }
  1519. #u138104_div {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:0px;
  1523. top:0px;
  1524. width:375px;
  1525. height:681px;
  1526. background:inherit;
  1527. background-color:rgba(242, 242, 242, 0.462745098039216);
  1528. border:none;
  1529. border-radius:0px;
  1530. -moz-box-shadow:none;
  1531. -webkit-box-shadow:none;
  1532. box-shadow:none;
  1533. }
  1534. #u138104 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:29px;
  1538. top:107px;
  1539. width:375px;
  1540. height:681px;
  1541. display:flex;
  1542. }
  1543. #u138104 .text {
  1544. position:absolute;
  1545. align-self:center;
  1546. padding:2px 2px 2px 2px;
  1547. box-sizing:border-box;
  1548. width:100%;
  1549. }
  1550. #u138104_text {
  1551. border-width:0px;
  1552. word-wrap:break-word;
  1553. text-transform:none;
  1554. visibility:hidden;
  1555. }
  1556. #u138105 {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:0px;
  1560. top:0px;
  1561. width:0px;
  1562. height:0px;
  1563. }
  1564. #u138106_img {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:0px;
  1568. top:0px;
  1569. width:24px;
  1570. height:24px;
  1571. }
  1572. #u138106 {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:251px;
  1576. top:792px;
  1577. width:24px;
  1578. height:24px;
  1579. display:flex;
  1580. font-size:8px;
  1581. }
  1582. #u138106 .text {
  1583. position:absolute;
  1584. align-self:center;
  1585. padding:2px 2px 2px 2px;
  1586. box-sizing:border-box;
  1587. width:100%;
  1588. }
  1589. #u138106_text {
  1590. border-width:0px;
  1591. word-wrap:break-word;
  1592. text-transform:none;
  1593. }
  1594. #u138107_div {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:37px;
  1600. height:17px;
  1601. background:inherit;
  1602. background-color:rgba(255, 255, 255, 0);
  1603. border:none;
  1604. border-radius:0px;
  1605. -moz-box-shadow:none;
  1606. -webkit-box-shadow:none;
  1607. box-shadow:none;
  1608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1609. font-weight:400;
  1610. font-style:normal;
  1611. font-size:12px;
  1612. }
  1613. #u138107 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:245px;
  1617. top:817px;
  1618. width:37px;
  1619. height:17px;
  1620. display:flex;
  1621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1622. font-weight:400;
  1623. font-style:normal;
  1624. font-size:12px;
  1625. }
  1626. #u138107 .text {
  1627. position:absolute;
  1628. align-self:flex-start;
  1629. padding:0px 0px 0px 0px;
  1630. box-sizing:border-box;
  1631. width:100%;
  1632. }
  1633. #u138107_text {
  1634. border-width:0px;
  1635. white-space:nowrap;
  1636. text-transform:none;
  1637. }
  1638. #u138108 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u138109_img {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:24px;
  1652. height:24px;
  1653. }
  1654. #u138109 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:157px;
  1658. top:792px;
  1659. width:24px;
  1660. height:24px;
  1661. display:flex;
  1662. font-size:8px;
  1663. }
  1664. #u138109 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u138109_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. }
  1676. #u138110_div {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:0px;
  1680. top:0px;
  1681. width:37px;
  1682. height:17px;
  1683. background:inherit;
  1684. background-color:rgba(255, 255, 255, 0);
  1685. border:none;
  1686. border-radius:0px;
  1687. -moz-box-shadow:none;
  1688. -webkit-box-shadow:none;
  1689. box-shadow:none;
  1690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1691. font-weight:400;
  1692. font-style:normal;
  1693. font-size:12px;
  1694. }
  1695. #u138110 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:151px;
  1699. top:817px;
  1700. width:37px;
  1701. height:17px;
  1702. display:flex;
  1703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1704. font-weight:400;
  1705. font-style:normal;
  1706. font-size:12px;
  1707. }
  1708. #u138110 .text {
  1709. position:absolute;
  1710. align-self:flex-start;
  1711. padding:0px 0px 0px 0px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u138110_text {
  1716. border-width:0px;
  1717. white-space:nowrap;
  1718. text-transform:none;
  1719. }
  1720. #u138111_div {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:375px;
  1726. height:735px;
  1727. background:inherit;
  1728. background-color:rgba(242, 242, 242, 1);
  1729. border:none;
  1730. border-top:0px;
  1731. border-radius:25px;
  1732. border-top-left-radius:0px;
  1733. border-top-right-radius:0px;
  1734. -moz-box-shadow:none;
  1735. -webkit-box-shadow:none;
  1736. box-shadow:none;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. }
  1741. #u138111 {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:29px;
  1745. top:105px;
  1746. width:375px;
  1747. height:735px;
  1748. display:flex;
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. }
  1753. #u138111 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:2px 2px 2px 2px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u138111_text {
  1761. border-width:0px;
  1762. word-wrap:break-word;
  1763. text-transform:none;
  1764. visibility:hidden;
  1765. }
  1766. #u138112 {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:0px;
  1772. height:0px;
  1773. }
  1774. #u138113_img {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:0px;
  1778. top:0px;
  1779. width:11px;
  1780. height:18px;
  1781. }
  1782. #u138113 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:46px;
  1786. top:79px;
  1787. width:11px;
  1788. height:18px;
  1789. display:flex;
  1790. }
  1791. #u138113 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:2px 2px 2px 2px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u138113_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. visibility:hidden;
  1803. }
  1804. #u138114_div {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:375px;
  1810. height:227px;
  1811. background:inherit;
  1812. background-color:rgba(255, 255, 255, 1);
  1813. border:none;
  1814. border-radius:0px;
  1815. -moz-box-shadow:none;
  1816. -webkit-box-shadow:none;
  1817. box-shadow:none;
  1818. }
  1819. #u138114 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:29px;
  1823. top:105px;
  1824. width:375px;
  1825. height:227px;
  1826. display:flex;
  1827. }
  1828. #u138114 .text {
  1829. position:absolute;
  1830. align-self:center;
  1831. padding:2px 2px 2px 2px;
  1832. box-sizing:border-box;
  1833. width:100%;
  1834. }
  1835. #u138114_text {
  1836. border-width:0px;
  1837. word-wrap:break-word;
  1838. text-transform:none;
  1839. visibility:hidden;
  1840. }
  1841. #u138115_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:121px;
  1847. height:33px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 0);
  1850. border:none;
  1851. border-radius:0px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:24px;
  1859. color:#000000;
  1860. }
  1861. #u138115 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:46px;
  1865. top:124px;
  1866. width:121px;
  1867. height:33px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:24px;
  1873. color:#000000;
  1874. }
  1875. #u138115 .text {
  1876. position:absolute;
  1877. align-self:flex-start;
  1878. padding:0px 0px 0px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u138115_text {
  1883. border-width:0px;
  1884. white-space:nowrap;
  1885. text-transform:none;
  1886. }
  1887. #u138116_div {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:91px;
  1893. height:40px;
  1894. background:inherit;
  1895. background-color:rgba(255, 255, 255, 0);
  1896. border:none;
  1897. border-left:0px;
  1898. border-top:0px;
  1899. border-right:0px;
  1900. border-radius:0px;
  1901. border-bottom-right-radius:0px;
  1902. border-bottom-left-radius:0px;
  1903. -moz-box-shadow:none;
  1904. -webkit-box-shadow:none;
  1905. box-shadow:none;
  1906. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1907. font-weight:500;
  1908. font-style:normal;
  1909. font-size:18px;
  1910. line-height:30px;
  1911. }
  1912. #u138116 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:76px;
  1916. top:65px;
  1917. width:91px;
  1918. height:40px;
  1919. display:flex;
  1920. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1921. font-weight:500;
  1922. font-style:normal;
  1923. font-size:18px;
  1924. line-height:30px;
  1925. }
  1926. #u138116 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:0px 0px 0px 0px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u138116_text {
  1934. border-width:0px;
  1935. white-space:nowrap;
  1936. text-transform:none;
  1937. }
  1938. #u138117_div {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:328px;
  1944. height:40px;
  1945. background:inherit;
  1946. background-color:rgba(24, 144, 255, 1);
  1947. border:none;
  1948. border-radius:40px;
  1949. -moz-box-shadow:none;
  1950. -webkit-box-shadow:none;
  1951. box-shadow:none;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:12px;
  1956. color:#FFFFFF;
  1957. }
  1958. #u138117 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:49px;
  1962. top:352px;
  1963. width:328px;
  1964. height:40px;
  1965. display:flex;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:12px;
  1970. color:#FFFFFF;
  1971. }
  1972. #u138117 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 2px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u138117_text {
  1980. border-width:0px;
  1981. word-wrap:break-word;
  1982. text-transform:none;
  1983. }
  1984. #u138118_div {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:348px;
  1990. height:60px;
  1991. background:inherit;
  1992. background-color:rgba(255, 255, 255, 0);
  1993. border:none;
  1994. border-radius:0px;
  1995. -moz-box-shadow:none;
  1996. -webkit-box-shadow:none;
  1997. box-shadow:none;
  1998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. font-size:14px;
  2002. color:#7F7F7F;
  2003. }
  2004. #u138118 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:49px;
  2008. top:173px;
  2009. width:348px;
  2010. height:60px;
  2011. display:flex;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:14px;
  2016. color:#7F7F7F;
  2017. }
  2018. #u138118 .text {
  2019. position:absolute;
  2020. align-self:flex-start;
  2021. padding:0px 0px 0px 0px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u138118_text {
  2026. border-width:0px;
  2027. word-wrap:break-word;
  2028. text-transform:none;
  2029. }
  2030. #u138119_div {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:375px;
  2036. height:60px;
  2037. background:inherit;
  2038. background-color:rgba(255, 255, 255, 0);
  2039. border:none;
  2040. border-radius:0px;
  2041. -moz-box-shadow:none;
  2042. -webkit-box-shadow:none;
  2043. box-shadow:none;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:14px;
  2048. line-height:30px;
  2049. }
  2050. #u138119 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:29px;
  2054. top:254px;
  2055. width:375px;
  2056. height:60px;
  2057. display:flex;
  2058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2059. font-weight:400;
  2060. font-style:normal;
  2061. font-size:14px;
  2062. line-height:30px;
  2063. }
  2064. #u138119 .text {
  2065. position:absolute;
  2066. align-self:flex-start;
  2067. padding:0px 0px 0px 0px;
  2068. box-sizing:border-box;
  2069. width:100%;
  2070. }
  2071. #u138119_text {
  2072. border-width:0px;
  2073. word-wrap:break-word;
  2074. text-transform:none;
  2075. }
  2076. #u138120_img {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:-5px;
  2080. top:-5px;
  2081. width:187px;
  2082. height:37px;
  2083. }
  2084. #u138120 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:138px;
  2088. top:446px;
  2089. width:177px;
  2090. height:27px;
  2091. display:flex;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:12px;
  2096. color:#FFFFFF;
  2097. text-align:left;
  2098. }
  2099. #u138120 .text {
  2100. position:absolute;
  2101. align-self:center;
  2102. padding:5px 10px 5px 10px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u138120_text {
  2107. border-width:0px;
  2108. white-space:nowrap;
  2109. text-transform:none;
  2110. }
  2111. #u138121_img {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:245px;
  2117. height:118px;
  2118. }
  2119. #u138121 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:539px;
  2123. top:134px;
  2124. width:245px;
  2125. height:118px;
  2126. display:flex;
  2127. }
  2128. #u138121 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 2px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u138121_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u138122_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:375px;
  2147. height:60px;
  2148. background:inherit;
  2149. background-color:rgba(255, 255, 255, 0);
  2150. border:none;
  2151. border-radius:0px;
  2152. -moz-box-shadow:none;
  2153. -webkit-box-shadow:none;
  2154. box-shadow:none;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:14px;
  2159. line-height:30px;
  2160. }
  2161. #u138122 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:482px;
  2165. top:342px;
  2166. width:375px;
  2167. height:60px;
  2168. display:flex;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:14px;
  2173. line-height:30px;
  2174. }
  2175. #u138122 .text {
  2176. position:absolute;
  2177. align-self:flex-start;
  2178. padding:0px 0px 0px 0px;
  2179. box-sizing:border-box;
  2180. width:100%;
  2181. }
  2182. #u138122_text {
  2183. border-width:0px;
  2184. word-wrap:break-word;
  2185. text-transform:none;
  2186. }
  2187. #u138123 {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:0px;
  2193. height:0px;
  2194. }
  2195. #u138124_div {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:355px;
  2201. height:80px;
  2202. background:inherit;
  2203. background-color:rgba(255, 255, 255, 1);
  2204. border:none;
  2205. border-radius:4px;
  2206. -moz-box-shadow:none;
  2207. -webkit-box-shadow:none;
  2208. box-shadow:none;
  2209. }
  2210. #u138124 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:492px;
  2214. top:447px;
  2215. width:355px;
  2216. height:80px;
  2217. display:flex;
  2218. }
  2219. #u138124 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 2px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u138124_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. visibility:hidden;
  2231. }
  2232. #u138125_div {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:97px;
  2238. height:22px;
  2239. background:inherit;
  2240. background-color:rgba(255, 255, 255, 0);
  2241. border:none;
  2242. border-radius:0px;
  2243. -moz-box-shadow:none;
  2244. -webkit-box-shadow:none;
  2245. box-shadow:none;
  2246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:16px;
  2250. color:#000000;
  2251. }
  2252. #u138125 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:512px;
  2256. top:462px;
  2257. width:97px;
  2258. height:22px;
  2259. display:flex;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:16px;
  2264. color:#000000;
  2265. }
  2266. #u138125 .text {
  2267. position:absolute;
  2268. align-self:flex-start;
  2269. padding:0px 0px 0px 0px;
  2270. box-sizing:border-box;
  2271. width:100%;
  2272. }
  2273. #u138125_text {
  2274. border-width:0px;
  2275. white-space:nowrap;
  2276. text-transform:none;
  2277. }
  2278. #u138126_div {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:121px;
  2284. height:25px;
  2285. background:inherit;
  2286. background-color:rgba(255, 255, 255, 0);
  2287. border:none;
  2288. border-radius:0px;
  2289. -moz-box-shadow:none;
  2290. -webkit-box-shadow:none;
  2291. box-shadow:none;
  2292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:12px;
  2296. color:#000000;
  2297. line-height:25px;
  2298. }
  2299. #u138126 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:512px;
  2303. top:490px;
  2304. width:121px;
  2305. height:25px;
  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:#000000;
  2312. line-height:25px;
  2313. }
  2314. #u138126 .text {
  2315. position:absolute;
  2316. align-self:flex-start;
  2317. padding:0px 0px 0px 0px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u138126_text {
  2322. border-width:0px;
  2323. white-space:nowrap;
  2324. text-transform:none;
  2325. }
  2326. #u138127_img {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:6px;
  2332. height:10px;
  2333. }
  2334. #u138127 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:819px;
  2338. top:482px;
  2339. width:6px;
  2340. height:10px;
  2341. display:flex;
  2342. }
  2343. #u138127 .text {
  2344. position:absolute;
  2345. align-self:center;
  2346. padding:2px 2px 2px 2px;
  2347. box-sizing:border-box;
  2348. width:100%;
  2349. }
  2350. #u138127_text {
  2351. border-width:0px;
  2352. word-wrap:break-word;
  2353. text-transform:none;
  2354. visibility:hidden;
  2355. }
  2356. #u138128 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:0px;
  2362. height:0px;
  2363. }
  2364. #u138129_div {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:355px;
  2370. height:80px;
  2371. background:inherit;
  2372. background-color:rgba(255, 255, 255, 1);
  2373. border:none;
  2374. border-radius:4px;
  2375. -moz-box-shadow:none;
  2376. -webkit-box-shadow:none;
  2377. box-shadow:none;
  2378. }
  2379. #u138129 {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:492px;
  2383. top:537px;
  2384. width:355px;
  2385. height:80px;
  2386. display:flex;
  2387. }
  2388. #u138129 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 2px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u138129_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u138130_div {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:97px;
  2407. height:22px;
  2408. background:inherit;
  2409. background-color:rgba(255, 255, 255, 0);
  2410. border:none;
  2411. border-radius:0px;
  2412. -moz-box-shadow:none;
  2413. -webkit-box-shadow:none;
  2414. box-shadow:none;
  2415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2416. font-weight:400;
  2417. font-style:normal;
  2418. font-size:16px;
  2419. color:#000000;
  2420. }
  2421. #u138130 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:512px;
  2425. top:552px;
  2426. width:97px;
  2427. height:22px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:16px;
  2433. color:#000000;
  2434. }
  2435. #u138130 .text {
  2436. position:absolute;
  2437. align-self:flex-start;
  2438. padding:0px 0px 0px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u138130_text {
  2443. border-width:0px;
  2444. white-space:nowrap;
  2445. text-transform:none;
  2446. }
  2447. #u138131_div {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:292px;
  2453. height:25px;
  2454. background:inherit;
  2455. background-color:rgba(255, 255, 255, 0);
  2456. border:none;
  2457. border-radius:0px;
  2458. -moz-box-shadow:none;
  2459. -webkit-box-shadow:none;
  2460. box-shadow:none;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:12px;
  2465. color:#000000;
  2466. line-height:25px;
  2467. }
  2468. #u138131 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:512px;
  2472. top:580px;
  2473. width:292px;
  2474. height:25px;
  2475. display:flex;
  2476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2477. font-weight:400;
  2478. font-style:normal;
  2479. font-size:12px;
  2480. color:#000000;
  2481. line-height:25px;
  2482. }
  2483. #u138131 .text {
  2484. position:absolute;
  2485. align-self:flex-start;
  2486. padding:0px 0px 0px 0px;
  2487. box-sizing:border-box;
  2488. width:100%;
  2489. }
  2490. #u138131_text {
  2491. border-width:0px;
  2492. word-wrap:break-word;
  2493. text-transform:none;
  2494. }
  2495. #u138132_img {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:6px;
  2501. height:10px;
  2502. }
  2503. #u138132 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:819px;
  2507. top:572px;
  2508. width:6px;
  2509. height:10px;
  2510. display:flex;
  2511. }
  2512. #u138132 .text {
  2513. position:absolute;
  2514. align-self:center;
  2515. padding:2px 2px 2px 2px;
  2516. box-sizing:border-box;
  2517. width:100%;
  2518. }
  2519. #u138132_text {
  2520. border-width:0px;
  2521. word-wrap:break-word;
  2522. text-transform:none;
  2523. visibility:hidden;
  2524. }
  2525. #u138133 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:0px;
  2531. height:0px;
  2532. }
  2533. #u138134_div {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:300px;
  2539. height:179px;
  2540. background:inherit;
  2541. background-color:rgba(255, 255, 255, 1);
  2542. border:none;
  2543. border-radius:10px;
  2544. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2545. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2546. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2547. }
  2548. #u138134 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:63px;
  2552. top:503px;
  2553. width:300px;
  2554. height:179px;
  2555. display:flex;
  2556. }
  2557. #u138134 .text {
  2558. position:absolute;
  2559. align-self:center;
  2560. padding:2px 2px 2px 2px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u138134_text {
  2565. border-width:0px;
  2566. word-wrap:break-word;
  2567. text-transform:none;
  2568. visibility:hidden;
  2569. }
  2570. #u138135_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:91px;
  2576. height:30px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 0);
  2579. border:none;
  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. -moz-box-shadow:none;
  2587. -webkit-box-shadow:none;
  2588. box-shadow:none;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:18px;
  2593. text-align:center;
  2594. line-height:30px;
  2595. }
  2596. #u138135 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:168px;
  2600. top:521px;
  2601. width:91px;
  2602. height:30px;
  2603. display:flex;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:18px;
  2608. text-align:center;
  2609. line-height:30px;
  2610. }
  2611. #u138135 .text {
  2612. position:absolute;
  2613. align-self:flex-start;
  2614. padding:0px 0px 0px 0px;
  2615. box-sizing:border-box;
  2616. width:100%;
  2617. }
  2618. #u138135_text {
  2619. border-width:0px;
  2620. white-space:nowrap;
  2621. text-transform:none;
  2622. }
  2623. #u138136_div {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:260px;
  2629. height:52px;
  2630. background:inherit;
  2631. background-color:rgba(255, 255, 255, 0);
  2632. border:none;
  2633. border-left:0px;
  2634. border-top:0px;
  2635. border-right:0px;
  2636. border-radius:0px;
  2637. border-bottom-right-radius:0px;
  2638. border-bottom-left-radius:0px;
  2639. -moz-box-shadow:none;
  2640. -webkit-box-shadow:none;
  2641. box-shadow:none;
  2642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2643. font-weight:400;
  2644. font-style:normal;
  2645. font-size:14px;
  2646. color:#7F7F7F;
  2647. line-height:26px;
  2648. }
  2649. #u138136 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:86px;
  2653. top:561px;
  2654. width:260px;
  2655. height:52px;
  2656. display:flex;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:14px;
  2661. color:#7F7F7F;
  2662. line-height:26px;
  2663. }
  2664. #u138136 .text {
  2665. position:absolute;
  2666. align-self:flex-start;
  2667. padding:0px 0px 0px 0px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u138136_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. }
  2676. #u138137_img {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:0px;
  2680. top:0px;
  2681. width:301px;
  2682. height:2px;
  2683. }
  2684. #u138137 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:63px;
  2688. top:633px;
  2689. width:300px;
  2690. height:1px;
  2691. display:flex;
  2692. }
  2693. #u138137 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 2px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u138137_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u138138_div {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:41px;
  2712. height:30px;
  2713. background:inherit;
  2714. background-color:rgba(255, 255, 255, 0);
  2715. border:none;
  2716. border-left:0px;
  2717. border-top:0px;
  2718. border-right:0px;
  2719. border-radius:0px;
  2720. border-bottom-right-radius:0px;
  2721. border-bottom-left-radius:0px;
  2722. -moz-box-shadow:none;
  2723. -webkit-box-shadow:none;
  2724. box-shadow:none;
  2725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2726. font-weight:400;
  2727. font-style:normal;
  2728. font-size:18px;
  2729. color:#1890FF;
  2730. text-align:center;
  2731. line-height:30px;
  2732. }
  2733. #u138138 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:182px;
  2737. top:643px;
  2738. width:41px;
  2739. height:30px;
  2740. display:flex;
  2741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:18px;
  2745. color:#1890FF;
  2746. text-align:center;
  2747. line-height:30px;
  2748. }
  2749. #u138138 .text {
  2750. position:absolute;
  2751. align-self:flex-start;
  2752. padding:0px 0px 0px 0px;
  2753. box-sizing:border-box;
  2754. width:100%;
  2755. }
  2756. #u138138_text {
  2757. border-width:0px;
  2758. word-wrap:break-word;
  2759. text-transform:none;
  2760. }
  2761. #u138139_div {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:0px;
  2765. top:0px;
  2766. width:153px;
  2767. height:27px;
  2768. background:inherit;
  2769. background-color:rgba(0, 0, 0, 0);
  2770. border:none;
  2771. border-radius:4px;
  2772. -moz-box-shadow:none;
  2773. -webkit-box-shadow:none;
  2774. box-shadow:none;
  2775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. font-size:12px;
  2779. color:#D9001B;
  2780. text-align:left;
  2781. }
  2782. #u138139 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:601px;
  2786. top:880px;
  2787. width:153px;
  2788. height:27px;
  2789. display:flex;
  2790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. font-size:12px;
  2794. color:#D9001B;
  2795. text-align:left;
  2796. }
  2797. #u138139 .text {
  2798. position:absolute;
  2799. align-self:center;
  2800. padding:5px 10px 5px 10px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u138139_text {
  2805. border-width:0px;
  2806. white-space:nowrap;
  2807. text-transform:none;
  2808. }
  2809. #u138140_div {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:153px;
  2815. height:27px;
  2816. background:inherit;
  2817. background-color:rgba(0, 0, 0, 0);
  2818. border:none;
  2819. border-radius:4px;
  2820. -moz-box-shadow:none;
  2821. -webkit-box-shadow:none;
  2822. box-shadow:none;
  2823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2824. font-weight:400;
  2825. font-style:normal;
  2826. font-size:12px;
  2827. color:#D9001B;
  2828. text-align:left;
  2829. }
  2830. #u138140 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:147px;
  2834. top:880px;
  2835. width:153px;
  2836. height:27px;
  2837. display:flex;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:12px;
  2842. color:#D9001B;
  2843. text-align:left;
  2844. }
  2845. #u138140 .text {
  2846. position:absolute;
  2847. align-self:center;
  2848. padding:5px 10px 5px 10px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u138140_text {
  2853. border-width:0px;
  2854. white-space:nowrap;
  2855. text-transform:none;
  2856. }