styles.css 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:892px;
  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. #u160285_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u160285 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u160285 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u160285_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u160286_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. #u160286 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u160286 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u160286_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u160287 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u160288_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. #u160288 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u160288 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u160288_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u160289 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u160290_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u160290 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u160290 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u160290_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u160291_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u160291 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u160291 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u160291_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u160292 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u160293_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u160293 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u160293 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u160293_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u160294_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u160294 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u160294 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u160294_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u160295_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u160295 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u160295 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u160295_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u160296_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u160296 {
  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. #u160296 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u160296_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u160297_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u160297 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u160297 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u160297_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u160298_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. #u160298 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u160298 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u160298_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u160299 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u160300_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u160300 {
  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. #u160300 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u160300_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u160301_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. #u160301 {
  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. #u160301 .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. #u160301_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u160302 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u160303_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u160303 {
  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. #u160303 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u160303_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u160304_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. #u160304 {
  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. #u160304 .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. #u160304_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u160305_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. #u160305 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u160305 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u160305_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u160306 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u160307_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u160307 {
  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. #u160307 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u160307_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u160308_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. #u160308 {
  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. #u160308 .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. #u160308_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u160309 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u160310_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u160310 {
  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. #u160310 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u160310_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u160311_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. #u160311 {
  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. #u160311 .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. #u160311_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u160312_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:57px;
  785. height:30px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 0);
  788. border:none;
  789. border-left:0px;
  790. border-top:0px;
  791. border-right:0px;
  792. border-radius:0px;
  793. border-bottom-right-radius:0px;
  794. border-bottom-left-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  799. font-weight:400;
  800. font-style:normal;
  801. font-size:14px;
  802. line-height:30px;
  803. }
  804. #u160312 {
  805. border-width:0px;
  806. position:absolute;
  807. left:53px;
  808. top:72px;
  809. width:57px;
  810. height:30px;
  811. display:flex;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:14px;
  816. line-height:30px;
  817. }
  818. #u160312 .text {
  819. position:absolute;
  820. align-self:center;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u160312_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u160313_div {
  831. border-width:0px;
  832. position:absolute;
  833. left:0px;
  834. top:0px;
  835. width:375px;
  836. height:733px;
  837. background:inherit;
  838. background-color:rgba(255, 255, 255, 1);
  839. border:none;
  840. border-top:0px;
  841. border-radius:28px;
  842. border-top-left-radius:0px;
  843. border-top-right-radius:0px;
  844. -moz-box-shadow:none;
  845. -webkit-box-shadow:none;
  846. box-shadow:none;
  847. }
  848. #u160313 {
  849. border-width:0px;
  850. position:absolute;
  851. left:29px;
  852. top:107px;
  853. width:375px;
  854. height:733px;
  855. display:flex;
  856. }
  857. #u160313 .text {
  858. position:absolute;
  859. align-self:center;
  860. padding:2px 2px 2px 2px;
  861. box-sizing:border-box;
  862. width:100%;
  863. }
  864. #u160313_text {
  865. border-width:0px;
  866. word-wrap:break-word;
  867. text-transform:none;
  868. visibility:hidden;
  869. }
  870. #u160314 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u160315_div {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:339px;
  884. height:280px;
  885. background:inherit;
  886. background-color:rgba(242, 242, 242, 1);
  887. border:none;
  888. border-radius:6px;
  889. -moz-box-shadow:none;
  890. -webkit-box-shadow:none;
  891. box-shadow:none;
  892. }
  893. #u160315 {
  894. border-width:0px;
  895. position:absolute;
  896. left:47px;
  897. top:213px;
  898. width:339px;
  899. height:280px;
  900. display:flex;
  901. }
  902. #u160315 .text {
  903. position:absolute;
  904. align-self:center;
  905. padding:2px 2px 2px 2px;
  906. box-sizing:border-box;
  907. width:100%;
  908. }
  909. #u160315_text {
  910. border-width:0px;
  911. word-wrap:break-word;
  912. text-transform:none;
  913. visibility:hidden;
  914. }
  915. #u160316_div {
  916. border-width:0px;
  917. position:absolute;
  918. left:0px;
  919. top:0px;
  920. width:145px;
  921. height:30px;
  922. background:inherit;
  923. background-color:rgba(255, 255, 255, 0);
  924. border:none;
  925. border-left:0px;
  926. border-top:0px;
  927. border-right:0px;
  928. border-radius:0px;
  929. border-bottom-right-radius:0px;
  930. border-bottom-left-radius:0px;
  931. -moz-box-shadow:none;
  932. -webkit-box-shadow:none;
  933. box-shadow:none;
  934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  935. font-weight:400;
  936. font-style:normal;
  937. font-size:18px;
  938. color:#0089FE;
  939. line-height:30px;
  940. }
  941. #u160316 {
  942. border-width:0px;
  943. position:absolute;
  944. left:71px;
  945. top:226px;
  946. width:145px;
  947. height:30px;
  948. display:flex;
  949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  950. font-weight:400;
  951. font-style:normal;
  952. font-size:18px;
  953. color:#0089FE;
  954. line-height:30px;
  955. }
  956. #u160316 .text {
  957. position:absolute;
  958. align-self:flex-start;
  959. padding:0px 0px 0px 0px;
  960. box-sizing:border-box;
  961. width:100%;
  962. }
  963. #u160316_text {
  964. border-width:0px;
  965. white-space:nowrap;
  966. text-transform:none;
  967. }
  968. #u160317 {
  969. border-width:0px;
  970. position:absolute;
  971. left:0px;
  972. top:0px;
  973. width:0px;
  974. height:0px;
  975. }
  976. #u160318_div {
  977. border-width:0px;
  978. position:absolute;
  979. left:0px;
  980. top:0px;
  981. width:105px;
  982. height:30px;
  983. background:inherit;
  984. background-color:rgba(255, 255, 255, 0);
  985. border:none;
  986. border-left:0px;
  987. border-top:0px;
  988. border-right:0px;
  989. border-radius:0px;
  990. border-bottom-right-radius:0px;
  991. border-bottom-left-radius:0px;
  992. -moz-box-shadow:none;
  993. -webkit-box-shadow:none;
  994. box-shadow:none;
  995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  996. font-weight:400;
  997. font-style:normal;
  998. font-size:34px;
  999. line-height:30px;
  1000. }
  1001. #u160318 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:164px;
  1005. top:303px;
  1006. width:105px;
  1007. height:30px;
  1008. display:flex;
  1009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1010. font-weight:400;
  1011. font-style:normal;
  1012. font-size:34px;
  1013. line-height:30px;
  1014. }
  1015. #u160318 .text {
  1016. position:absolute;
  1017. align-self:flex-start;
  1018. padding:0px 0px 0px 0px;
  1019. box-sizing:border-box;
  1020. width:100%;
  1021. }
  1022. #u160318_text {
  1023. border-width:0px;
  1024. white-space:nowrap;
  1025. text-transform:none;
  1026. }
  1027. #u160319_div {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:37px;
  1033. height:30px;
  1034. background:inherit;
  1035. background-color:rgba(255, 255, 255, 0);
  1036. border:none;
  1037. border-left:0px;
  1038. border-top:0px;
  1039. border-right:0px;
  1040. border-radius:0px;
  1041. border-bottom-right-radius:0px;
  1042. border-bottom-left-radius:0px;
  1043. -moz-box-shadow:none;
  1044. -webkit-box-shadow:none;
  1045. box-shadow:none;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. font-size:12px;
  1050. line-height:30px;
  1051. }
  1052. #u160319 {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:198px;
  1056. top:263px;
  1057. width:37px;
  1058. height:30px;
  1059. display:flex;
  1060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1061. font-weight:400;
  1062. font-style:normal;
  1063. font-size:12px;
  1064. line-height:30px;
  1065. }
  1066. #u160319 .text {
  1067. position:absolute;
  1068. align-self:flex-start;
  1069. padding:0px 0px 0px 0px;
  1070. box-sizing:border-box;
  1071. width:100%;
  1072. }
  1073. #u160319_text {
  1074. border-width:0px;
  1075. white-space:nowrap;
  1076. text-transform:none;
  1077. }
  1078. #u160320_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:187px;
  1084. height:60px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-left:0px;
  1089. border-top:0px;
  1090. border-right:0px;
  1091. border-radius:0px;
  1092. border-bottom-right-radius:0px;
  1093. border-bottom-left-radius:0px;
  1094. -moz-box-shadow:none;
  1095. -webkit-box-shadow:none;
  1096. box-shadow:none;
  1097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1098. font-weight:400;
  1099. font-style:normal;
  1100. font-size:12px;
  1101. line-height:30px;
  1102. }
  1103. #u160320 {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:71px;
  1107. top:373px;
  1108. width:187px;
  1109. height:60px;
  1110. display:flex;
  1111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1112. font-weight:400;
  1113. font-style:normal;
  1114. font-size:12px;
  1115. line-height:30px;
  1116. }
  1117. #u160320 .text {
  1118. position:absolute;
  1119. align-self:flex-start;
  1120. padding:0px 0px 0px 0px;
  1121. box-sizing:border-box;
  1122. width:100%;
  1123. }
  1124. #u160320_text {
  1125. border-width:0px;
  1126. white-space:nowrap;
  1127. text-transform:none;
  1128. }
  1129. #u160321_div {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:0px;
  1133. top:0px;
  1134. width:293px;
  1135. height:40px;
  1136. background:inherit;
  1137. background-color:rgba(24, 144, 255, 1);
  1138. border:none;
  1139. border-radius:81px;
  1140. -moz-box-shadow:none;
  1141. -webkit-box-shadow:none;
  1142. box-shadow:none;
  1143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1144. font-weight:400;
  1145. font-style:normal;
  1146. font-size:14px;
  1147. color:#FFFFFF;
  1148. }
  1149. #u160321 {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:74px;
  1153. top:444px;
  1154. width:293px;
  1155. height:40px;
  1156. display:flex;
  1157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1158. font-weight:400;
  1159. font-style:normal;
  1160. font-size:14px;
  1161. color:#FFFFFF;
  1162. }
  1163. #u160321 .text {
  1164. position:absolute;
  1165. align-self:center;
  1166. padding:2px 2px 2px 2px;
  1167. box-sizing:border-box;
  1168. width:100%;
  1169. }
  1170. #u160321_text {
  1171. border-width:0px;
  1172. word-wrap:break-word;
  1173. text-transform:none;
  1174. }
  1175. #u160322_div {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:0px;
  1179. top:0px;
  1180. width:128px;
  1181. height:30px;
  1182. background:inherit;
  1183. background-color:rgba(255, 255, 255, 0);
  1184. border:none;
  1185. border-left:0px;
  1186. border-top:0px;
  1187. border-right:0px;
  1188. border-radius:0px;
  1189. border-bottom-right-radius:0px;
  1190. border-bottom-left-radius:0px;
  1191. -moz-box-shadow:none;
  1192. -webkit-box-shadow:none;
  1193. box-shadow:none;
  1194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1195. font-weight:400;
  1196. font-style:normal;
  1197. font-size:12px;
  1198. line-height:30px;
  1199. }
  1200. #u160322 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:153px;
  1204. top:338px;
  1205. width:128px;
  1206. height:30px;
  1207. display:flex;
  1208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1209. font-weight:400;
  1210. font-style:normal;
  1211. font-size:12px;
  1212. line-height:30px;
  1213. }
  1214. #u160322 .text {
  1215. position:absolute;
  1216. align-self:flex-start;
  1217. padding:0px 0px 0px 0px;
  1218. box-sizing:border-box;
  1219. width:100%;
  1220. }
  1221. #u160322_text {
  1222. border-width:0px;
  1223. white-space:nowrap;
  1224. text-transform:none;
  1225. }
  1226. #u160323_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:36px;
  1232. height:20px;
  1233. background:inherit;
  1234. background-color:rgba(217, 92, 0, 1);
  1235. border:none;
  1236. border-right:0px;
  1237. border-radius:9px;
  1238. border-top-right-radius:0px;
  1239. border-bottom-right-radius:0px;
  1240. -moz-box-shadow:none;
  1241. -webkit-box-shadow:none;
  1242. box-shadow:none;
  1243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1244. font-weight:400;
  1245. font-style:normal;
  1246. font-size:10px;
  1247. color:#FFFFFF;
  1248. text-align:center;
  1249. }
  1250. #u160323 {
  1251. border-width:0px;
  1252. position:absolute;
  1253. left:350px;
  1254. top:231px;
  1255. width:36px;
  1256. height:20px;
  1257. display:flex;
  1258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1259. font-weight:400;
  1260. font-style:normal;
  1261. font-size:10px;
  1262. color:#FFFFFF;
  1263. text-align:center;
  1264. }
  1265. #u160323 .text {
  1266. position:absolute;
  1267. align-self:center;
  1268. padding:0px 0px 0px 0px;
  1269. box-sizing:border-box;
  1270. width:100%;
  1271. }
  1272. #u160323_text {
  1273. border-width:0px;
  1274. word-wrap:break-word;
  1275. text-transform:none;
  1276. }
  1277. #u160324_div {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:72px;
  1283. height:20px;
  1284. background:inherit;
  1285. background-color:rgba(217, 92, 0, 0);
  1286. border:none;
  1287. border-right:0px;
  1288. border-radius:9px;
  1289. border-top-right-radius:0px;
  1290. border-bottom-right-radius:0px;
  1291. -moz-box-shadow:none;
  1292. -webkit-box-shadow:none;
  1293. box-shadow:none;
  1294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1295. font-weight:400;
  1296. font-style:normal;
  1297. font-size:10px;
  1298. color:#F59A23;
  1299. text-align:center;
  1300. }
  1301. #u160324 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:181px;
  1305. top:408px;
  1306. width:72px;
  1307. height:20px;
  1308. display:flex;
  1309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1310. font-weight:400;
  1311. font-style:normal;
  1312. font-size:10px;
  1313. color:#F59A23;
  1314. text-align:center;
  1315. }
  1316. #u160324 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:0px 0px 0px 0px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u160324_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. }
  1328. #u160325 {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:0px;
  1334. height:0px;
  1335. }
  1336. #u160326_div {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:339px;
  1342. height:320px;
  1343. background:inherit;
  1344. background-color:rgba(242, 242, 242, 1);
  1345. border:none;
  1346. border-radius:6px;
  1347. -moz-box-shadow:none;
  1348. -webkit-box-shadow:none;
  1349. box-shadow:none;
  1350. }
  1351. #u160326 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:47px;
  1355. top:503px;
  1356. width:339px;
  1357. height:320px;
  1358. display:flex;
  1359. }
  1360. #u160326 .text {
  1361. position:absolute;
  1362. align-self:center;
  1363. padding:2px 2px 2px 2px;
  1364. box-sizing:border-box;
  1365. width:100%;
  1366. }
  1367. #u160326_text {
  1368. border-width:0px;
  1369. word-wrap:break-word;
  1370. text-transform:none;
  1371. visibility:hidden;
  1372. }
  1373. #u160327_div {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:0px;
  1377. top:0px;
  1378. width:145px;
  1379. height:30px;
  1380. background:inherit;
  1381. background-color:rgba(255, 255, 255, 0);
  1382. border:none;
  1383. border-left:0px;
  1384. border-top:0px;
  1385. border-right:0px;
  1386. border-radius:0px;
  1387. border-bottom-right-radius:0px;
  1388. border-bottom-left-radius:0px;
  1389. -moz-box-shadow:none;
  1390. -webkit-box-shadow:none;
  1391. box-shadow:none;
  1392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1393. font-weight:400;
  1394. font-style:normal;
  1395. font-size:18px;
  1396. color:#0089FE;
  1397. line-height:30px;
  1398. }
  1399. #u160327 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:71px;
  1403. top:516px;
  1404. width:145px;
  1405. height:30px;
  1406. display:flex;
  1407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:18px;
  1411. color:#0089FE;
  1412. line-height:30px;
  1413. }
  1414. #u160327 .text {
  1415. position:absolute;
  1416. align-self:flex-start;
  1417. padding:0px 0px 0px 0px;
  1418. box-sizing:border-box;
  1419. width:100%;
  1420. }
  1421. #u160327_text {
  1422. border-width:0px;
  1423. white-space:nowrap;
  1424. text-transform:none;
  1425. }
  1426. #u160328_div {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:183px;
  1432. height:60px;
  1433. background:inherit;
  1434. background-color:rgba(255, 255, 255, 0);
  1435. border:none;
  1436. border-left:0px;
  1437. border-top:0px;
  1438. border-right:0px;
  1439. border-radius:0px;
  1440. border-bottom-right-radius:0px;
  1441. border-bottom-left-radius:0px;
  1442. -moz-box-shadow:none;
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. font-size:12px;
  1449. line-height:30px;
  1450. }
  1451. #u160328 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:71px;
  1455. top:662px;
  1456. width:183px;
  1457. height:60px;
  1458. display:flex;
  1459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1460. font-weight:400;
  1461. font-style:normal;
  1462. font-size:12px;
  1463. line-height:30px;
  1464. }
  1465. #u160328 .text {
  1466. position:absolute;
  1467. align-self:flex-start;
  1468. padding:0px 0px 0px 0px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u160328_text {
  1473. border-width:0px;
  1474. white-space:nowrap;
  1475. text-transform:none;
  1476. }
  1477. #u160329_div {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:0px;
  1481. top:0px;
  1482. width:128px;
  1483. height:30px;
  1484. background:inherit;
  1485. background-color:rgba(255, 255, 255, 0);
  1486. border:none;
  1487. border-left:0px;
  1488. border-top:0px;
  1489. border-right:0px;
  1490. border-radius:0px;
  1491. border-bottom-right-radius:0px;
  1492. border-bottom-left-radius:0px;
  1493. -moz-box-shadow:none;
  1494. -webkit-box-shadow:none;
  1495. box-shadow:none;
  1496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1497. font-weight:400;
  1498. font-style:normal;
  1499. font-size:12px;
  1500. line-height:30px;
  1501. }
  1502. #u160329 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:159px;
  1506. top:613px;
  1507. width:128px;
  1508. height:30px;
  1509. display:flex;
  1510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1511. font-weight:400;
  1512. font-style:normal;
  1513. font-size:12px;
  1514. line-height:30px;
  1515. }
  1516. #u160329 .text {
  1517. position:absolute;
  1518. align-self:flex-start;
  1519. padding:0px 0px 0px 0px;
  1520. box-sizing:border-box;
  1521. width:100%;
  1522. }
  1523. #u160329_text {
  1524. border-width:0px;
  1525. white-space:nowrap;
  1526. text-transform:none;
  1527. }
  1528. #u160330_div {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:105px;
  1534. height:30px;
  1535. background:inherit;
  1536. background-color:rgba(255, 255, 255, 0);
  1537. border:none;
  1538. border-left:0px;
  1539. border-top:0px;
  1540. border-right:0px;
  1541. border-radius:0px;
  1542. border-bottom-right-radius:0px;
  1543. border-bottom-left-radius:0px;
  1544. -moz-box-shadow:none;
  1545. -webkit-box-shadow:none;
  1546. box-shadow:none;
  1547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1548. font-weight:400;
  1549. font-style:normal;
  1550. font-size:34px;
  1551. line-height:30px;
  1552. }
  1553. #u160330 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:168px;
  1557. top:572px;
  1558. width:105px;
  1559. height:30px;
  1560. display:flex;
  1561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1562. font-weight:400;
  1563. font-style:normal;
  1564. font-size:34px;
  1565. line-height:30px;
  1566. }
  1567. #u160330 .text {
  1568. position:absolute;
  1569. align-self:flex-start;
  1570. padding:0px 0px 0px 0px;
  1571. box-sizing:border-box;
  1572. width:100%;
  1573. }
  1574. #u160330_text {
  1575. border-width:0px;
  1576. white-space:nowrap;
  1577. text-transform:none;
  1578. }
  1579. #u160331_div {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:0px;
  1583. top:0px;
  1584. width:339px;
  1585. height:40px;
  1586. background:inherit;
  1587. background-color:rgba(255, 255, 128, 0.0980392156862745);
  1588. border:none;
  1589. border-right:0px;
  1590. border-radius:9px;
  1591. border-top-right-radius:0px;
  1592. border-bottom-right-radius:0px;
  1593. -moz-box-shadow:none;
  1594. -webkit-box-shadow:none;
  1595. box-shadow:none;
  1596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1597. font-weight:400;
  1598. font-style:normal;
  1599. font-size:10px;
  1600. color:#F59A23;
  1601. text-align:center;
  1602. }
  1603. #u160331 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:47px;
  1607. top:727px;
  1608. width:339px;
  1609. height:40px;
  1610. display:flex;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:10px;
  1615. color:#F59A23;
  1616. text-align:center;
  1617. }
  1618. #u160331 .text {
  1619. position:absolute;
  1620. align-self:center;
  1621. padding:0px 0px 0px 0px;
  1622. box-sizing:border-box;
  1623. width:100%;
  1624. }
  1625. #u160331_text {
  1626. border-width:0px;
  1627. word-wrap:break-word;
  1628. text-transform:none;
  1629. }
  1630. #u160332_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:293px;
  1636. height:40px;
  1637. background:inherit;
  1638. background-color:rgba(215, 215, 215, 0);
  1639. box-sizing:border-box;
  1640. border-width:1px;
  1641. border-style:solid;
  1642. border-color:rgba(24, 144, 255, 1);
  1643. border-radius:81px;
  1644. -moz-box-shadow:none;
  1645. -webkit-box-shadow:none;
  1646. box-shadow:none;
  1647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1648. font-weight:400;
  1649. font-style:normal;
  1650. font-size:12px;
  1651. color:#1890FF;
  1652. line-height:30px;
  1653. }
  1654. #u160332 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:70px;
  1658. top:767px;
  1659. width:293px;
  1660. height:40px;
  1661. display:flex;
  1662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1663. font-weight:400;
  1664. font-style:normal;
  1665. font-size:12px;
  1666. color:#1890FF;
  1667. line-height:30px;
  1668. }
  1669. #u160332 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u160332_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. }
  1681. #u160334_img {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:433px;
  1687. height:865px;
  1688. }
  1689. #u160334 {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:459px;
  1693. top:0px;
  1694. width:433px;
  1695. height:865px;
  1696. display:flex;
  1697. }
  1698. #u160334 .text {
  1699. position:absolute;
  1700. align-self:center;
  1701. padding:2px 2px 2px 2px;
  1702. box-sizing:border-box;
  1703. width:100%;
  1704. }
  1705. #u160334_text {
  1706. border-width:0px;
  1707. word-wrap:break-word;
  1708. text-transform:none;
  1709. visibility:hidden;
  1710. }
  1711. #u160335_div {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:375px;
  1717. height:40px;
  1718. background:inherit;
  1719. background-color:rgba(255, 255, 255, 1);
  1720. box-sizing:border-box;
  1721. border-width:1px;
  1722. border-style:solid;
  1723. border-color:rgba(215, 215, 215, 1);
  1724. border-left:0px;
  1725. border-top:0px;
  1726. border-right:0px;
  1727. border-radius:0px;
  1728. border-bottom-right-radius:0px;
  1729. border-bottom-left-radius:0px;
  1730. -moz-box-shadow:none;
  1731. -webkit-box-shadow:none;
  1732. box-shadow:none;
  1733. }
  1734. #u160335 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:488px;
  1738. top:67px;
  1739. width:375px;
  1740. height:40px;
  1741. display:flex;
  1742. }
  1743. #u160335 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:2px 2px 2px 2px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u160335_text {
  1751. border-width:0px;
  1752. word-wrap:break-word;
  1753. text-transform:none;
  1754. visibility:hidden;
  1755. }
  1756. #u160336 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:0px;
  1762. height:0px;
  1763. }
  1764. #u160337_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:88px;
  1770. height:32px;
  1771. background:inherit;
  1772. background-color:rgba(255, 255, 255, 1);
  1773. box-sizing:border-box;
  1774. border-width:1px;
  1775. border-style:solid;
  1776. border-color:rgba(242, 242, 242, 1);
  1777. border-radius:33px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. }
  1782. #u160337 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:768px;
  1786. top:71px;
  1787. width:88px;
  1788. height:32px;
  1789. display:flex;
  1790. }
  1791. #u160337 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:2px 2px 2px 2px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u160337_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. visibility:hidden;
  1803. }
  1804. #u160338 {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:0px;
  1810. height:0px;
  1811. }
  1812. #u160339_img {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:18px;
  1818. height:18px;
  1819. }
  1820. #u160339 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:831px;
  1824. top:78px;
  1825. width:18px;
  1826. height:18px;
  1827. display:flex;
  1828. }
  1829. #u160339 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:2px 2px 2px 2px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u160339_text {
  1837. border-width:0px;
  1838. word-wrap:break-word;
  1839. text-transform:none;
  1840. visibility:hidden;
  1841. }
  1842. #u160340_img {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:0px;
  1846. top:0px;
  1847. width:6px;
  1848. height:6px;
  1849. }
  1850. #u160340 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:837px;
  1854. top:84px;
  1855. width:6px;
  1856. height:6px;
  1857. display:flex;
  1858. }
  1859. #u160340 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u160340_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. visibility:hidden;
  1871. }
  1872. #u160341 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:0px;
  1878. height:0px;
  1879. }
  1880. #u160342_img {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:5px;
  1886. height:5px;
  1887. }
  1888. #u160342 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:782px;
  1892. top:85px;
  1893. width:5px;
  1894. height:5px;
  1895. display:flex;
  1896. }
  1897. #u160342 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 2px 2px 2px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u160342_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. visibility:hidden;
  1909. }
  1910. #u160343_img {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:5px;
  1916. height:5px;
  1917. }
  1918. #u160343 {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:798px;
  1922. top:85px;
  1923. width:5px;
  1924. height:5px;
  1925. display:flex;
  1926. }
  1927. #u160343 .text {
  1928. position:absolute;
  1929. align-self:center;
  1930. padding:2px 2px 2px 2px;
  1931. box-sizing:border-box;
  1932. width:100%;
  1933. }
  1934. #u160343_text {
  1935. border-width:0px;
  1936. word-wrap:break-word;
  1937. text-transform:none;
  1938. visibility:hidden;
  1939. }
  1940. #u160344_img {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:7px;
  1946. height:7px;
  1947. }
  1948. #u160344 {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:789px;
  1952. top:84px;
  1953. width:7px;
  1954. height:7px;
  1955. display:flex;
  1956. }
  1957. #u160344 .text {
  1958. position:absolute;
  1959. align-self:center;
  1960. padding:2px 2px 2px 2px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u160344_text {
  1965. border-width:0px;
  1966. word-wrap:break-word;
  1967. text-transform:none;
  1968. visibility:hidden;
  1969. }
  1970. #u160345_img {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:19px;
  1976. height:2px;
  1977. }
  1978. #u160345 {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:806px;
  1982. top:87px;
  1983. width:18px;
  1984. height:1px;
  1985. display:flex;
  1986. -webkit-transform:rotate(90deg);
  1987. -moz-transform:rotate(90deg);
  1988. -ms-transform:rotate(90deg);
  1989. transform:rotate(90deg);
  1990. }
  1991. #u160345 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 2px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u160345_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. visibility:hidden;
  2003. }
  2004. #u160346_img {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:375px;
  2010. height:44px;
  2011. }
  2012. #u160346 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:488px;
  2016. top:24px;
  2017. width:375px;
  2018. height:44px;
  2019. display:flex;
  2020. }
  2021. #u160346 .text {
  2022. position:absolute;
  2023. align-self:center;
  2024. padding:2px 2px 2px 2px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u160346_text {
  2029. border-width:0px;
  2030. word-wrap:break-word;
  2031. text-transform:none;
  2032. visibility:hidden;
  2033. }
  2034. #u160347_div {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:375px;
  2040. height:50px;
  2041. background:inherit;
  2042. background-color:rgba(255, 255, 255, 1);
  2043. box-sizing:border-box;
  2044. border-width:1px;
  2045. border-style:solid;
  2046. border-color:rgba(242, 242, 242, 1);
  2047. border-radius:26px;
  2048. border-top-left-radius:0px;
  2049. border-top-right-radius:0px;
  2050. -moz-box-shadow:none;
  2051. -webkit-box-shadow:none;
  2052. box-shadow:none;
  2053. }
  2054. #u160347 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:488px;
  2058. top:788px;
  2059. width:375px;
  2060. height:50px;
  2061. display:flex;
  2062. }
  2063. #u160347 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 2px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u160347_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. visibility:hidden;
  2075. }
  2076. #u160348 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:0px;
  2082. height:0px;
  2083. }
  2084. #u160349_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:24px;
  2090. height:24px;
  2091. }
  2092. #u160349 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:528px;
  2096. top:792px;
  2097. width:24px;
  2098. height:24px;
  2099. display:flex;
  2100. font-size:8px;
  2101. }
  2102. #u160349 .text {
  2103. position:absolute;
  2104. align-self:center;
  2105. padding:2px 2px 2px 2px;
  2106. box-sizing:border-box;
  2107. width:100%;
  2108. }
  2109. #u160349_text {
  2110. border-width:0px;
  2111. word-wrap:break-word;
  2112. text-transform:none;
  2113. }
  2114. #u160350_div {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:25px;
  2120. height:17px;
  2121. background:inherit;
  2122. background-color:rgba(255, 255, 255, 0);
  2123. border:none;
  2124. border-radius:0px;
  2125. -moz-box-shadow:none;
  2126. -webkit-box-shadow:none;
  2127. box-shadow:none;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:12px;
  2132. }
  2133. #u160350 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:528px;
  2137. top:817px;
  2138. width:25px;
  2139. height:17px;
  2140. display:flex;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. }
  2146. #u160350 .text {
  2147. position:absolute;
  2148. align-self:flex-start;
  2149. padding:0px 0px 0px 0px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u160350_text {
  2154. border-width:0px;
  2155. white-space:nowrap;
  2156. text-transform:none;
  2157. }
  2158. #u160351 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:0px;
  2164. height:0px;
  2165. }
  2166. #u160352_img {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:0px;
  2170. top:0px;
  2171. width:24px;
  2172. height:24px;
  2173. }
  2174. #u160352 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:798px;
  2178. top:794px;
  2179. width:24px;
  2180. height:24px;
  2181. display:flex;
  2182. font-size:8px;
  2183. }
  2184. #u160352 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 2px 2px 2px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u160352_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. }
  2196. #u160353_div {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:25px;
  2202. height:17px;
  2203. background:inherit;
  2204. background-color:rgba(255, 255, 255, 0);
  2205. border:none;
  2206. border-radius:0px;
  2207. -moz-box-shadow:none;
  2208. -webkit-box-shadow:none;
  2209. box-shadow:none;
  2210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2211. font-weight:400;
  2212. font-style:normal;
  2213. font-size:12px;
  2214. }
  2215. #u160353 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:798px;
  2219. top:819px;
  2220. width:25px;
  2221. height:17px;
  2222. display:flex;
  2223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:12px;
  2227. }
  2228. #u160353 .text {
  2229. position:absolute;
  2230. align-self:flex-start;
  2231. padding:0px 0px 0px 0px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u160353_text {
  2236. border-width:0px;
  2237. white-space:nowrap;
  2238. text-transform:none;
  2239. }
  2240. #u160354_div {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:375px;
  2246. height:681px;
  2247. background:inherit;
  2248. background-color:rgba(242, 242, 242, 0.462745098039216);
  2249. border:none;
  2250. border-radius:0px;
  2251. -moz-box-shadow:none;
  2252. -webkit-box-shadow:none;
  2253. box-shadow:none;
  2254. }
  2255. #u160354 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:488px;
  2259. top:107px;
  2260. width:375px;
  2261. height:681px;
  2262. display:flex;
  2263. }
  2264. #u160354 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 2px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u160354_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u160355 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:0px;
  2283. height:0px;
  2284. }
  2285. #u160356_img {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:24px;
  2291. height:24px;
  2292. }
  2293. #u160356 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:710px;
  2297. top:792px;
  2298. width:24px;
  2299. height:24px;
  2300. display:flex;
  2301. font-size:8px;
  2302. }
  2303. #u160356 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 2px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u160356_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. }
  2315. #u160357_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:37px;
  2321. height:17px;
  2322. background:inherit;
  2323. background-color:rgba(255, 255, 255, 0);
  2324. border:none;
  2325. border-radius:0px;
  2326. -moz-box-shadow:none;
  2327. -webkit-box-shadow:none;
  2328. box-shadow:none;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. }
  2334. #u160357 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:704px;
  2338. top:817px;
  2339. width:37px;
  2340. height:17px;
  2341. display:flex;
  2342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2343. font-weight:400;
  2344. font-style:normal;
  2345. font-size:12px;
  2346. }
  2347. #u160357 .text {
  2348. position:absolute;
  2349. align-self:flex-start;
  2350. padding:0px 0px 0px 0px;
  2351. box-sizing:border-box;
  2352. width:100%;
  2353. }
  2354. #u160357_text {
  2355. border-width:0px;
  2356. white-space:nowrap;
  2357. text-transform:none;
  2358. }
  2359. #u160358 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:0px;
  2365. height:0px;
  2366. }
  2367. #u160359_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:24px;
  2373. height:24px;
  2374. }
  2375. #u160359 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:616px;
  2379. top:792px;
  2380. width:24px;
  2381. height:24px;
  2382. display:flex;
  2383. font-size:8px;
  2384. }
  2385. #u160359 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 2px 2px 2px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u160359_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. }
  2397. #u160360_div {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:37px;
  2403. height:17px;
  2404. background:inherit;
  2405. background-color:rgba(255, 255, 255, 0);
  2406. border:none;
  2407. border-radius:0px;
  2408. -moz-box-shadow:none;
  2409. -webkit-box-shadow:none;
  2410. box-shadow:none;
  2411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2412. font-weight:400;
  2413. font-style:normal;
  2414. font-size:12px;
  2415. }
  2416. #u160360 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:610px;
  2420. top:817px;
  2421. width:37px;
  2422. height:17px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:12px;
  2428. }
  2429. #u160360 .text {
  2430. position:absolute;
  2431. align-self:flex-start;
  2432. padding:0px 0px 0px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u160360_text {
  2437. border-width:0px;
  2438. white-space:nowrap;
  2439. text-transform:none;
  2440. }
  2441. #u160361_div {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:57px;
  2447. height:30px;
  2448. background:inherit;
  2449. background-color:rgba(255, 255, 255, 0);
  2450. border:none;
  2451. border-left:0px;
  2452. border-top:0px;
  2453. border-right:0px;
  2454. border-radius:0px;
  2455. border-bottom-right-radius:0px;
  2456. border-bottom-left-radius:0px;
  2457. -moz-box-shadow:none;
  2458. -webkit-box-shadow:none;
  2459. box-shadow:none;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:14px;
  2464. line-height:30px;
  2465. }
  2466. #u160361 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:512px;
  2470. top:72px;
  2471. width:57px;
  2472. height:30px;
  2473. display:flex;
  2474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. font-size:14px;
  2478. line-height:30px;
  2479. }
  2480. #u160361 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:0px 0px 0px 0px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u160361_text {
  2488. border-width:0px;
  2489. white-space:nowrap;
  2490. text-transform:none;
  2491. }
  2492. #u160362_div {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:0px;
  2496. top:0px;
  2497. width:375px;
  2498. height:733px;
  2499. background:inherit;
  2500. background-color:rgba(255, 255, 255, 1);
  2501. border:none;
  2502. border-top:0px;
  2503. border-radius:28px;
  2504. border-top-left-radius:0px;
  2505. border-top-right-radius:0px;
  2506. -moz-box-shadow:none;
  2507. -webkit-box-shadow:none;
  2508. box-shadow:none;
  2509. }
  2510. #u160362 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:488px;
  2514. top:107px;
  2515. width:375px;
  2516. height:733px;
  2517. display:flex;
  2518. }
  2519. #u160362 .text {
  2520. position:absolute;
  2521. align-self:center;
  2522. padding:2px 2px 2px 2px;
  2523. box-sizing:border-box;
  2524. width:100%;
  2525. }
  2526. #u160362_text {
  2527. border-width:0px;
  2528. word-wrap:break-word;
  2529. text-transform:none;
  2530. visibility:hidden;
  2531. }
  2532. #u160363 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:0px;
  2538. height:0px;
  2539. }
  2540. #u160364_div {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:0px;
  2544. top:0px;
  2545. width:339px;
  2546. height:280px;
  2547. background:inherit;
  2548. background-color:rgba(242, 242, 242, 1);
  2549. border:none;
  2550. border-radius:6px;
  2551. -moz-box-shadow:none;
  2552. -webkit-box-shadow:none;
  2553. box-shadow:none;
  2554. }
  2555. #u160364 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:506px;
  2559. top:213px;
  2560. width:339px;
  2561. height:280px;
  2562. display:flex;
  2563. }
  2564. #u160364 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:2px 2px 2px 2px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u160364_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. visibility:hidden;
  2576. }
  2577. #u160365_div {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:145px;
  2583. height:30px;
  2584. background:inherit;
  2585. background-color:rgba(255, 255, 255, 0);
  2586. border:none;
  2587. border-left:0px;
  2588. border-top:0px;
  2589. border-right:0px;
  2590. border-radius:0px;
  2591. border-bottom-right-radius:0px;
  2592. border-bottom-left-radius:0px;
  2593. -moz-box-shadow:none;
  2594. -webkit-box-shadow:none;
  2595. box-shadow:none;
  2596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:18px;
  2600. color:#0089FE;
  2601. line-height:30px;
  2602. }
  2603. #u160365 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:530px;
  2607. top:226px;
  2608. width:145px;
  2609. height:30px;
  2610. display:flex;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:18px;
  2615. color:#0089FE;
  2616. line-height:30px;
  2617. }
  2618. #u160365 .text {
  2619. position:absolute;
  2620. align-self:flex-start;
  2621. padding:0px 0px 0px 0px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u160365_text {
  2626. border-width:0px;
  2627. white-space:nowrap;
  2628. text-transform:none;
  2629. }
  2630. #u160366 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:0px;
  2636. height:0px;
  2637. }
  2638. #u160367_div {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:105px;
  2644. height:30px;
  2645. background:inherit;
  2646. background-color:rgba(255, 255, 255, 0);
  2647. border:none;
  2648. border-left:0px;
  2649. border-top:0px;
  2650. border-right:0px;
  2651. border-radius:0px;
  2652. border-bottom-right-radius:0px;
  2653. border-bottom-left-radius:0px;
  2654. -moz-box-shadow:none;
  2655. -webkit-box-shadow:none;
  2656. box-shadow:none;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:34px;
  2661. line-height:30px;
  2662. }
  2663. #u160367 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:623px;
  2667. top:303px;
  2668. width:105px;
  2669. height:30px;
  2670. display:flex;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:34px;
  2675. line-height:30px;
  2676. }
  2677. #u160367 .text {
  2678. position:absolute;
  2679. align-self:flex-start;
  2680. padding:0px 0px 0px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u160367_text {
  2685. border-width:0px;
  2686. white-space:nowrap;
  2687. text-transform:none;
  2688. }
  2689. #u160368_div {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:37px;
  2695. height:30px;
  2696. background:inherit;
  2697. background-color:rgba(255, 255, 255, 0);
  2698. border:none;
  2699. border-left:0px;
  2700. border-top:0px;
  2701. border-right:0px;
  2702. border-radius:0px;
  2703. border-bottom-right-radius:0px;
  2704. border-bottom-left-radius:0px;
  2705. -moz-box-shadow:none;
  2706. -webkit-box-shadow:none;
  2707. box-shadow:none;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:12px;
  2712. line-height:30px;
  2713. }
  2714. #u160368 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:657px;
  2718. top:263px;
  2719. width:37px;
  2720. height:30px;
  2721. display:flex;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:12px;
  2726. line-height:30px;
  2727. }
  2728. #u160368 .text {
  2729. position:absolute;
  2730. align-self:flex-start;
  2731. padding:0px 0px 0px 0px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u160368_text {
  2736. border-width:0px;
  2737. white-space:nowrap;
  2738. text-transform:none;
  2739. }
  2740. #u160369_div {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:187px;
  2746. height:60px;
  2747. background:inherit;
  2748. background-color:rgba(255, 255, 255, 0);
  2749. border:none;
  2750. border-left:0px;
  2751. border-top:0px;
  2752. border-right:0px;
  2753. border-radius:0px;
  2754. border-bottom-right-radius:0px;
  2755. border-bottom-left-radius:0px;
  2756. -moz-box-shadow:none;
  2757. -webkit-box-shadow:none;
  2758. box-shadow:none;
  2759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:12px;
  2763. line-height:30px;
  2764. }
  2765. #u160369 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:530px;
  2769. top:373px;
  2770. width:187px;
  2771. height:60px;
  2772. display:flex;
  2773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:12px;
  2777. line-height:30px;
  2778. }
  2779. #u160369 .text {
  2780. position:absolute;
  2781. align-self:flex-start;
  2782. padding:0px 0px 0px 0px;
  2783. box-sizing:border-box;
  2784. width:100%;
  2785. }
  2786. #u160369_text {
  2787. border-width:0px;
  2788. white-space:nowrap;
  2789. text-transform:none;
  2790. }
  2791. #u160370_div {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:293px;
  2797. height:40px;
  2798. background:inherit;
  2799. background-color:rgba(24, 144, 255, 1);
  2800. border:none;
  2801. border-radius:81px;
  2802. -moz-box-shadow:none;
  2803. -webkit-box-shadow:none;
  2804. box-shadow:none;
  2805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2806. font-weight:400;
  2807. font-style:normal;
  2808. font-size:14px;
  2809. color:#FFFFFF;
  2810. }
  2811. #u160370 {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:533px;
  2815. top:444px;
  2816. width:293px;
  2817. height:40px;
  2818. display:flex;
  2819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2820. font-weight:400;
  2821. font-style:normal;
  2822. font-size:14px;
  2823. color:#FFFFFF;
  2824. }
  2825. #u160370 .text {
  2826. position:absolute;
  2827. align-self:center;
  2828. padding:2px 2px 2px 2px;
  2829. box-sizing:border-box;
  2830. width:100%;
  2831. }
  2832. #u160370_text {
  2833. border-width:0px;
  2834. word-wrap:break-word;
  2835. text-transform:none;
  2836. }
  2837. #u160371_div {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:0px;
  2842. width:128px;
  2843. height:30px;
  2844. background:inherit;
  2845. background-color:rgba(255, 255, 255, 0);
  2846. border:none;
  2847. border-left:0px;
  2848. border-top:0px;
  2849. border-right:0px;
  2850. border-radius:0px;
  2851. border-bottom-right-radius:0px;
  2852. border-bottom-left-radius:0px;
  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-weight:400;
  2858. font-style:normal;
  2859. font-size:12px;
  2860. line-height:30px;
  2861. }
  2862. #u160371 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:613px;
  2866. top:338px;
  2867. width:128px;
  2868. height:30px;
  2869. display:flex;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:12px;
  2874. line-height:30px;
  2875. }
  2876. #u160371 .text {
  2877. position:absolute;
  2878. align-self:flex-start;
  2879. padding:0px 0px 0px 0px;
  2880. box-sizing:border-box;
  2881. width:100%;
  2882. }
  2883. #u160371_text {
  2884. border-width:0px;
  2885. white-space:nowrap;
  2886. text-transform:none;
  2887. }
  2888. #u160372_div {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:36px;
  2894. height:20px;
  2895. background:inherit;
  2896. background-color:rgba(217, 92, 0, 1);
  2897. border:none;
  2898. border-right:0px;
  2899. border-radius:9px;
  2900. border-top-right-radius:0px;
  2901. border-bottom-right-radius:0px;
  2902. -moz-box-shadow:none;
  2903. -webkit-box-shadow:none;
  2904. box-shadow:none;
  2905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2906. font-weight:400;
  2907. font-style:normal;
  2908. font-size:10px;
  2909. color:#FFFFFF;
  2910. text-align:center;
  2911. }
  2912. #u160372 {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:809px;
  2916. top:231px;
  2917. width:36px;
  2918. height:20px;
  2919. display:flex;
  2920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2921. font-weight:400;
  2922. font-style:normal;
  2923. font-size:10px;
  2924. color:#FFFFFF;
  2925. text-align:center;
  2926. }
  2927. #u160372 .text {
  2928. position:absolute;
  2929. align-self:center;
  2930. padding:0px 0px 0px 0px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u160372_text {
  2935. border-width:0px;
  2936. word-wrap:break-word;
  2937. text-transform:none;
  2938. }
  2939. #u160373_div {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:72px;
  2945. height:20px;
  2946. background:inherit;
  2947. background-color:rgba(217, 92, 0, 0);
  2948. border:none;
  2949. border-right:0px;
  2950. border-radius:9px;
  2951. border-top-right-radius:0px;
  2952. border-bottom-right-radius:0px;
  2953. -moz-box-shadow:none;
  2954. -webkit-box-shadow:none;
  2955. box-shadow:none;
  2956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. font-size:10px;
  2960. color:#F59A23;
  2961. text-align:center;
  2962. }
  2963. #u160373 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:640px;
  2967. top:408px;
  2968. width:72px;
  2969. height:20px;
  2970. display:flex;
  2971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2972. font-weight:400;
  2973. font-style:normal;
  2974. font-size:10px;
  2975. color:#F59A23;
  2976. text-align:center;
  2977. }
  2978. #u160373 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:0px 0px 0px 0px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u160373_text {
  2986. border-width:0px;
  2987. word-wrap:break-word;
  2988. text-transform:none;
  2989. }
  2990. #u160374 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:0px;
  2996. height:0px;
  2997. }
  2998. #u160375_div {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:339px;
  3004. height:320px;
  3005. background:inherit;
  3006. background-color:rgba(242, 242, 242, 1);
  3007. border:none;
  3008. border-radius:6px;
  3009. -moz-box-shadow:none;
  3010. -webkit-box-shadow:none;
  3011. box-shadow:none;
  3012. }
  3013. #u160375 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:506px;
  3017. top:503px;
  3018. width:339px;
  3019. height:320px;
  3020. display:flex;
  3021. }
  3022. #u160375 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 2px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u160375_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u160376_div {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:145px;
  3041. height:30px;
  3042. background:inherit;
  3043. background-color:rgba(255, 255, 255, 0);
  3044. border:none;
  3045. border-left:0px;
  3046. border-top:0px;
  3047. border-right:0px;
  3048. border-radius:0px;
  3049. border-bottom-right-radius:0px;
  3050. border-bottom-left-radius:0px;
  3051. -moz-box-shadow:none;
  3052. -webkit-box-shadow:none;
  3053. box-shadow:none;
  3054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:18px;
  3058. color:#0089FE;
  3059. line-height:30px;
  3060. }
  3061. #u160376 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:530px;
  3065. top:516px;
  3066. width:145px;
  3067. height:30px;
  3068. display:flex;
  3069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:18px;
  3073. color:#0089FE;
  3074. line-height:30px;
  3075. }
  3076. #u160376 .text {
  3077. position:absolute;
  3078. align-self:flex-start;
  3079. padding:0px 0px 0px 0px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u160376_text {
  3084. border-width:0px;
  3085. white-space:nowrap;
  3086. text-transform:none;
  3087. }
  3088. #u160377_div {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:183px;
  3094. height:60px;
  3095. background:inherit;
  3096. background-color:rgba(255, 255, 255, 0);
  3097. border:none;
  3098. border-left:0px;
  3099. border-top:0px;
  3100. border-right:0px;
  3101. border-radius:0px;
  3102. border-bottom-right-radius:0px;
  3103. border-bottom-left-radius:0px;
  3104. -moz-box-shadow:none;
  3105. -webkit-box-shadow:none;
  3106. box-shadow:none;
  3107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3108. font-weight:400;
  3109. font-style:normal;
  3110. font-size:12px;
  3111. line-height:30px;
  3112. }
  3113. #u160377 {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:530px;
  3117. top:662px;
  3118. width:183px;
  3119. height:60px;
  3120. display:flex;
  3121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:12px;
  3125. line-height:30px;
  3126. }
  3127. #u160377 .text {
  3128. position:absolute;
  3129. align-self:flex-start;
  3130. padding:0px 0px 0px 0px;
  3131. box-sizing:border-box;
  3132. width:100%;
  3133. }
  3134. #u160377_text {
  3135. border-width:0px;
  3136. white-space:nowrap;
  3137. text-transform:none;
  3138. }
  3139. #u160378_div {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:128px;
  3145. height:30px;
  3146. background:inherit;
  3147. background-color:rgba(255, 255, 255, 0);
  3148. border:none;
  3149. border-left:0px;
  3150. border-top:0px;
  3151. border-right:0px;
  3152. border-radius:0px;
  3153. border-bottom-right-radius:0px;
  3154. border-bottom-left-radius:0px;
  3155. -moz-box-shadow:none;
  3156. -webkit-box-shadow:none;
  3157. box-shadow:none;
  3158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. font-size:12px;
  3162. line-height:30px;
  3163. }
  3164. #u160378 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:613px;
  3168. top:613px;
  3169. width:128px;
  3170. height:30px;
  3171. display:flex;
  3172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:12px;
  3176. line-height:30px;
  3177. }
  3178. #u160378 .text {
  3179. position:absolute;
  3180. align-self:flex-start;
  3181. padding:0px 0px 0px 0px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u160378_text {
  3186. border-width:0px;
  3187. white-space:nowrap;
  3188. text-transform:none;
  3189. }
  3190. #u160379_div {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:92px;
  3196. height:30px;
  3197. background:inherit;
  3198. background-color:rgba(255, 255, 255, 0);
  3199. border:none;
  3200. border-left:0px;
  3201. border-top:0px;
  3202. border-right:0px;
  3203. border-radius:0px;
  3204. border-bottom-right-radius:0px;
  3205. border-bottom-left-radius:0px;
  3206. -moz-box-shadow:none;
  3207. -webkit-box-shadow:none;
  3208. box-shadow:none;
  3209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3210. font-weight:400;
  3211. font-style:normal;
  3212. font-size:34px;
  3213. line-height:30px;
  3214. }
  3215. #u160379 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:636px;
  3219. top:572px;
  3220. width:92px;
  3221. height:30px;
  3222. display:flex;
  3223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3224. font-weight:400;
  3225. font-style:normal;
  3226. font-size:34px;
  3227. line-height:30px;
  3228. }
  3229. #u160379 .text {
  3230. position:absolute;
  3231. align-self:flex-start;
  3232. padding:0px 0px 0px 0px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u160379_text {
  3237. border-width:0px;
  3238. white-space:nowrap;
  3239. text-transform:none;
  3240. }
  3241. #u160380_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:339px;
  3247. height:40px;
  3248. background:inherit;
  3249. background-color:rgba(255, 255, 128, 0.0980392156862745);
  3250. border:none;
  3251. border-right:0px;
  3252. border-radius:9px;
  3253. border-top-right-radius:0px;
  3254. border-bottom-right-radius:0px;
  3255. -moz-box-shadow:none;
  3256. -webkit-box-shadow:none;
  3257. box-shadow:none;
  3258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:10px;
  3262. color:#F59A23;
  3263. text-align:center;
  3264. }
  3265. #u160380 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:506px;
  3269. top:727px;
  3270. width:339px;
  3271. height:40px;
  3272. display:flex;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:10px;
  3277. color:#F59A23;
  3278. text-align:center;
  3279. }
  3280. #u160380 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:0px 0px 0px 0px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u160380_text {
  3288. border-width:0px;
  3289. word-wrap:break-word;
  3290. text-transform:none;
  3291. }
  3292. #u160381_div {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:293px;
  3298. height:40px;
  3299. background:inherit;
  3300. background-color:rgba(215, 215, 215, 0);
  3301. box-sizing:border-box;
  3302. border-width:1px;
  3303. border-style:solid;
  3304. border-color:rgba(24, 144, 255, 1);
  3305. border-radius:81px;
  3306. -moz-box-shadow:none;
  3307. -webkit-box-shadow:none;
  3308. box-shadow:none;
  3309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3310. font-weight:400;
  3311. font-style:normal;
  3312. font-size:12px;
  3313. color:#1890FF;
  3314. line-height:30px;
  3315. }
  3316. #u160381 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:533px;
  3320. top:767px;
  3321. width:293px;
  3322. height:40px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. color:#1890FF;
  3329. line-height:30px;
  3330. }
  3331. #u160381 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 2px 2px 2px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u160381_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. }
  3343. #u160382_div {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:96px;
  3349. height:50px;
  3350. background:inherit;
  3351. background-color:rgba(255, 255, 255, 0);
  3352. box-sizing:border-box;
  3353. border-width:2px;
  3354. border-style:solid;
  3355. border-color:rgba(51, 51, 51, 1);
  3356. border-left:0px;
  3357. border-top:0px;
  3358. border-right:0px;
  3359. border-radius:0px;
  3360. border-bottom-right-radius:0px;
  3361. border-bottom-left-radius:0px;
  3362. -moz-box-shadow:none;
  3363. -webkit-box-shadow:none;
  3364. box-shadow:none;
  3365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:18px;
  3369. line-height:30px;
  3370. }
  3371. #u160382 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:47px;
  3375. top:107px;
  3376. width:96px;
  3377. height:50px;
  3378. display:flex;
  3379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:18px;
  3383. line-height:30px;
  3384. }
  3385. #u160382 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:0px 0px 0px 0px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u160382_text {
  3393. border-width:0px;
  3394. white-space:nowrap;
  3395. text-transform:none;
  3396. }
  3397. #u160383_div {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:241px;
  3403. height:30px;
  3404. background:inherit;
  3405. background-color:rgba(255, 255, 255, 0);
  3406. border:none;
  3407. border-radius:0px;
  3408. -moz-box-shadow:none;
  3409. -webkit-box-shadow:none;
  3410. box-shadow:none;
  3411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3412. font-weight:400;
  3413. font-style:normal;
  3414. font-size:10px;
  3415. color:#F59A23;
  3416. line-height:30px;
  3417. }
  3418. #u160383 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:47px;
  3422. top:167px;
  3423. width:241px;
  3424. height:30px;
  3425. display:flex;
  3426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3427. font-weight:400;
  3428. font-style:normal;
  3429. font-size:10px;
  3430. color:#F59A23;
  3431. line-height:30px;
  3432. }
  3433. #u160383 .text {
  3434. position:absolute;
  3435. align-self:flex-start;
  3436. padding:0px 0px 0px 0px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u160383_text {
  3441. border-width:0px;
  3442. white-space:nowrap;
  3443. text-transform:none;
  3444. }
  3445. #u160384_div {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:114px;
  3451. height:50px;
  3452. background:inherit;
  3453. background-color:rgba(255, 255, 255, 0);
  3454. border:none;
  3455. border-left:0px;
  3456. border-top:0px;
  3457. border-right:0px;
  3458. border-radius:0px;
  3459. border-bottom-right-radius:0px;
  3460. border-bottom-left-radius:0px;
  3461. -moz-box-shadow:none;
  3462. -webkit-box-shadow:none;
  3463. box-shadow:none;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:18px;
  3468. line-height:30px;
  3469. }
  3470. #u160384 {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:174px;
  3474. top:107px;
  3475. width:114px;
  3476. height:50px;
  3477. display:flex;
  3478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3479. font-weight:400;
  3480. font-style:normal;
  3481. font-size:18px;
  3482. line-height:30px;
  3483. }
  3484. #u160384 .text {
  3485. position:absolute;
  3486. align-self:center;
  3487. padding:0px 0px 0px 0px;
  3488. box-sizing:border-box;
  3489. width:100%;
  3490. }
  3491. #u160384_text {
  3492. border-width:0px;
  3493. white-space:nowrap;
  3494. text-transform:none;
  3495. }
  3496. #u160385_div {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:0px;
  3500. top:0px;
  3501. width:96px;
  3502. height:50px;
  3503. background:inherit;
  3504. background-color:rgba(255, 255, 255, 0);
  3505. box-sizing:border-box;
  3506. border-width:2px;
  3507. border-style:solid;
  3508. border-color:rgba(51, 51, 51, 1);
  3509. border-left:0px;
  3510. border-top:0px;
  3511. border-right:0px;
  3512. border-radius:0px;
  3513. border-bottom-right-radius:0px;
  3514. border-bottom-left-radius:0px;
  3515. -moz-box-shadow:none;
  3516. -webkit-box-shadow:none;
  3517. box-shadow:none;
  3518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:18px;
  3522. line-height:30px;
  3523. }
  3524. #u160385 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:512px;
  3528. top:107px;
  3529. width:96px;
  3530. height:50px;
  3531. display:flex;
  3532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:18px;
  3536. line-height:30px;
  3537. }
  3538. #u160385 .text {
  3539. position:absolute;
  3540. align-self:center;
  3541. padding:0px 0px 0px 0px;
  3542. box-sizing:border-box;
  3543. width:100%;
  3544. }
  3545. #u160385_text {
  3546. border-width:0px;
  3547. white-space:nowrap;
  3548. text-transform:none;
  3549. }
  3550. #u160386_div {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:0px;
  3554. top:0px;
  3555. width:241px;
  3556. height:30px;
  3557. background:inherit;
  3558. background-color:rgba(255, 255, 255, 0);
  3559. border:none;
  3560. border-radius:0px;
  3561. -moz-box-shadow:none;
  3562. -webkit-box-shadow:none;
  3563. box-shadow:none;
  3564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3565. font-weight:400;
  3566. font-style:normal;
  3567. font-size:10px;
  3568. color:#F59A23;
  3569. line-height:30px;
  3570. }
  3571. #u160386 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:512px;
  3575. top:167px;
  3576. width:241px;
  3577. height:30px;
  3578. display:flex;
  3579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:10px;
  3583. color:#F59A23;
  3584. line-height:30px;
  3585. }
  3586. #u160386 .text {
  3587. position:absolute;
  3588. align-self:flex-start;
  3589. padding:0px 0px 0px 0px;
  3590. box-sizing:border-box;
  3591. width:100%;
  3592. }
  3593. #u160386_text {
  3594. border-width:0px;
  3595. white-space:nowrap;
  3596. text-transform:none;
  3597. }
  3598. #u160387_div {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:114px;
  3604. height:50px;
  3605. background:inherit;
  3606. background-color:rgba(255, 255, 255, 0);
  3607. border:none;
  3608. border-left:0px;
  3609. border-top:0px;
  3610. border-right:0px;
  3611. border-radius:0px;
  3612. border-bottom-right-radius:0px;
  3613. border-bottom-left-radius:0px;
  3614. -moz-box-shadow:none;
  3615. -webkit-box-shadow:none;
  3616. box-shadow:none;
  3617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. font-size:18px;
  3621. line-height:30px;
  3622. }
  3623. #u160387 {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:639px;
  3627. top:107px;
  3628. width:114px;
  3629. height:50px;
  3630. display:flex;
  3631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3632. font-weight:400;
  3633. font-style:normal;
  3634. font-size:18px;
  3635. line-height:30px;
  3636. }
  3637. #u160387 .text {
  3638. position:absolute;
  3639. align-self:center;
  3640. padding:0px 0px 0px 0px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u160387_text {
  3645. border-width:0px;
  3646. white-space:nowrap;
  3647. text-transform:none;
  3648. }
  3649. #u160388_div {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:12px;
  3655. height:12px;
  3656. background:inherit;
  3657. background-color:rgba(255, 255, 255, 0);
  3658. box-sizing:border-box;
  3659. border-width:2px;
  3660. border-style:solid;
  3661. border-color:rgba(51, 51, 51, 1);
  3662. border-right:0px;
  3663. border-bottom:0px;
  3664. border-radius:0px;
  3665. border-top-right-radius:0px;
  3666. border-bottom-left-radius:0px;
  3667. -moz-box-shadow:none;
  3668. -webkit-box-shadow:none;
  3669. box-shadow:none;
  3670. }
  3671. #u160388 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:40px;
  3675. top:81px;
  3676. width:12px;
  3677. height:12px;
  3678. display:flex;
  3679. -webkit-transform:rotate(315deg);
  3680. -moz-transform:rotate(315deg);
  3681. -ms-transform:rotate(315deg);
  3682. transform:rotate(315deg);
  3683. }
  3684. #u160388 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:2px 2px 2px 2px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u160388_text {
  3692. border-width:0px;
  3693. word-wrap:break-word;
  3694. text-transform:none;
  3695. visibility:hidden;
  3696. }
  3697. #u160389_div {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:12px;
  3703. height:12px;
  3704. background:inherit;
  3705. background-color:rgba(255, 255, 255, 0);
  3706. box-sizing:border-box;
  3707. border-width:2px;
  3708. border-style:solid;
  3709. border-color:rgba(51, 51, 51, 1);
  3710. border-right:0px;
  3711. border-bottom:0px;
  3712. border-radius:0px;
  3713. border-top-right-radius:0px;
  3714. border-bottom-left-radius:0px;
  3715. -moz-box-shadow:none;
  3716. -webkit-box-shadow:none;
  3717. box-shadow:none;
  3718. }
  3719. #u160389 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:500px;
  3723. top:81px;
  3724. width:12px;
  3725. height:12px;
  3726. display:flex;
  3727. -webkit-transform:rotate(315deg);
  3728. -moz-transform:rotate(315deg);
  3729. -ms-transform:rotate(315deg);
  3730. transform:rotate(315deg);
  3731. }
  3732. #u160389 .text {
  3733. position:absolute;
  3734. align-self:center;
  3735. padding:2px 2px 2px 2px;
  3736. box-sizing:border-box;
  3737. width:100%;
  3738. }
  3739. #u160389_text {
  3740. border-width:0px;
  3741. word-wrap:break-word;
  3742. text-transform:none;
  3743. visibility:hidden;
  3744. }