styles.css 49 KB

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