styles.css 51 KB

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