styles.css 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1349px;
  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. #u156882_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u156882 {
  28. border-width:0px;
  29. position:absolute;
  30. left:916px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u156882 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u156882_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u156884_img {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:433px;
  55. height:865px;
  56. }
  57. #u156884 {
  58. border-width:0px;
  59. position:absolute;
  60. left:453px;
  61. top:0px;
  62. width:433px;
  63. height:865px;
  64. display:flex;
  65. }
  66. #u156884 .text {
  67. position:absolute;
  68. align-self:center;
  69. padding:2px 2px 2px 2px;
  70. box-sizing:border-box;
  71. width:100%;
  72. }
  73. #u156884_text {
  74. border-width:0px;
  75. word-wrap:break-word;
  76. text-transform:none;
  77. visibility:hidden;
  78. }
  79. #u156885_div {
  80. border-width:0px;
  81. position:absolute;
  82. left:0px;
  83. top:0px;
  84. width:375px;
  85. height:40px;
  86. background:inherit;
  87. background-color:rgba(255, 255, 255, 1);
  88. box-sizing:border-box;
  89. border-width:1px;
  90. border-style:solid;
  91. border-color:rgba(215, 215, 215, 1);
  92. border-left:0px;
  93. border-top:0px;
  94. border-right:0px;
  95. border-radius:0px;
  96. border-bottom-right-radius:0px;
  97. border-bottom-left-radius:0px;
  98. -moz-box-shadow:none;
  99. -webkit-box-shadow:none;
  100. box-shadow:none;
  101. }
  102. #u156885 {
  103. border-width:0px;
  104. position:absolute;
  105. left:482px;
  106. top:67px;
  107. width:375px;
  108. height:40px;
  109. display:flex;
  110. }
  111. #u156885 .text {
  112. position:absolute;
  113. align-self:center;
  114. padding:2px 2px 2px 2px;
  115. box-sizing:border-box;
  116. width:100%;
  117. }
  118. #u156885_text {
  119. border-width:0px;
  120. word-wrap:break-word;
  121. text-transform:none;
  122. visibility:hidden;
  123. }
  124. #u156886 {
  125. border-width:0px;
  126. position:absolute;
  127. left:0px;
  128. top:0px;
  129. width:0px;
  130. height:0px;
  131. }
  132. #u156887_div {
  133. border-width:0px;
  134. position:absolute;
  135. left:0px;
  136. top:0px;
  137. width:88px;
  138. height:32px;
  139. background:inherit;
  140. background-color:rgba(255, 255, 255, 1);
  141. box-sizing:border-box;
  142. border-width:1px;
  143. border-style:solid;
  144. border-color:rgba(242, 242, 242, 1);
  145. border-radius:33px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. }
  150. #u156887 {
  151. border-width:0px;
  152. position:absolute;
  153. left:762px;
  154. top:71px;
  155. width:88px;
  156. height:32px;
  157. display:flex;
  158. }
  159. #u156887 .text {
  160. position:absolute;
  161. align-self:center;
  162. padding:2px 2px 2px 2px;
  163. box-sizing:border-box;
  164. width:100%;
  165. }
  166. #u156887_text {
  167. border-width:0px;
  168. word-wrap:break-word;
  169. text-transform:none;
  170. visibility:hidden;
  171. }
  172. #u156888 {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:0px;
  178. height:0px;
  179. }
  180. #u156889_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:18px;
  186. height:18px;
  187. }
  188. #u156889 {
  189. border-width:0px;
  190. position:absolute;
  191. left:825px;
  192. top:78px;
  193. width:18px;
  194. height:18px;
  195. display:flex;
  196. }
  197. #u156889 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u156889_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u156890_img {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:6px;
  216. height:6px;
  217. }
  218. #u156890 {
  219. border-width:0px;
  220. position:absolute;
  221. left:831px;
  222. top:84px;
  223. width:6px;
  224. height:6px;
  225. display:flex;
  226. }
  227. #u156890 .text {
  228. position:absolute;
  229. align-self:center;
  230. padding:2px 2px 2px 2px;
  231. box-sizing:border-box;
  232. width:100%;
  233. }
  234. #u156890_text {
  235. border-width:0px;
  236. word-wrap:break-word;
  237. text-transform:none;
  238. visibility:hidden;
  239. }
  240. #u156891 {
  241. border-width:0px;
  242. position:absolute;
  243. left:0px;
  244. top:0px;
  245. width:0px;
  246. height:0px;
  247. }
  248. #u156892_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u156892 {
  257. border-width:0px;
  258. position:absolute;
  259. left:776px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u156892 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u156892_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u156893_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:5px;
  284. height:5px;
  285. }
  286. #u156893 {
  287. border-width:0px;
  288. position:absolute;
  289. left:792px;
  290. top:85px;
  291. width:5px;
  292. height:5px;
  293. display:flex;
  294. }
  295. #u156893 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u156893_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u156894_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:7px;
  314. height:7px;
  315. }
  316. #u156894 {
  317. border-width:0px;
  318. position:absolute;
  319. left:783px;
  320. top:84px;
  321. width:7px;
  322. height:7px;
  323. display:flex;
  324. }
  325. #u156894 .text {
  326. position:absolute;
  327. align-self:center;
  328. padding:2px 2px 2px 2px;
  329. box-sizing:border-box;
  330. width:100%;
  331. }
  332. #u156894_text {
  333. border-width:0px;
  334. word-wrap:break-word;
  335. text-transform:none;
  336. visibility:hidden;
  337. }
  338. #u156895_img {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:19px;
  344. height:2px;
  345. }
  346. #u156895 {
  347. border-width:0px;
  348. position:absolute;
  349. left:800px;
  350. top:87px;
  351. width:18px;
  352. height:1px;
  353. display:flex;
  354. -webkit-transform:rotate(90deg);
  355. -moz-transform:rotate(90deg);
  356. -ms-transform:rotate(90deg);
  357. transform:rotate(90deg);
  358. }
  359. #u156895 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u156895_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u156896_img {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:44px;
  379. }
  380. #u156896 {
  381. border-width:0px;
  382. position:absolute;
  383. left:482px;
  384. top:24px;
  385. width:375px;
  386. height:44px;
  387. display:flex;
  388. }
  389. #u156896 .text {
  390. position:absolute;
  391. align-self:center;
  392. padding:2px 2px 2px 2px;
  393. box-sizing:border-box;
  394. width:100%;
  395. }
  396. #u156896_text {
  397. border-width:0px;
  398. word-wrap:break-word;
  399. text-transform:none;
  400. visibility:hidden;
  401. }
  402. #u156897_div {
  403. border-width:0px;
  404. position:absolute;
  405. left:0px;
  406. top:0px;
  407. width:375px;
  408. height:50px;
  409. background:inherit;
  410. background-color:rgba(255, 255, 255, 1);
  411. box-sizing:border-box;
  412. border-width:1px;
  413. border-style:solid;
  414. border-color:rgba(242, 242, 242, 1);
  415. border-radius:26px;
  416. border-top-left-radius:0px;
  417. border-top-right-radius:0px;
  418. -moz-box-shadow:none;
  419. -webkit-box-shadow:none;
  420. box-shadow:none;
  421. }
  422. #u156897 {
  423. border-width:0px;
  424. position:absolute;
  425. left:482px;
  426. top:788px;
  427. width:375px;
  428. height:50px;
  429. display:flex;
  430. }
  431. #u156897 .text {
  432. position:absolute;
  433. align-self:center;
  434. padding:2px 2px 2px 2px;
  435. box-sizing:border-box;
  436. width:100%;
  437. }
  438. #u156897_text {
  439. border-width:0px;
  440. word-wrap:break-word;
  441. text-transform:none;
  442. visibility:hidden;
  443. }
  444. #u156898 {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:0px;
  450. height:0px;
  451. }
  452. #u156899_img {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:24px;
  458. height:24px;
  459. }
  460. #u156899 {
  461. border-width:0px;
  462. position:absolute;
  463. left:522px;
  464. top:792px;
  465. width:24px;
  466. height:24px;
  467. display:flex;
  468. font-size:8px;
  469. }
  470. #u156899 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:2px 2px 2px 2px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u156899_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u156900_div {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:25px;
  488. height:17px;
  489. background:inherit;
  490. background-color:rgba(255, 255, 255, 0);
  491. border:none;
  492. border-radius:0px;
  493. -moz-box-shadow:none;
  494. -webkit-box-shadow:none;
  495. box-shadow:none;
  496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  497. font-weight:400;
  498. font-style:normal;
  499. font-size:12px;
  500. }
  501. #u156900 {
  502. border-width:0px;
  503. position:absolute;
  504. left:522px;
  505. top:817px;
  506. width:25px;
  507. height:17px;
  508. display:flex;
  509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  510. font-weight:400;
  511. font-style:normal;
  512. font-size:12px;
  513. }
  514. #u156900 .text {
  515. position:absolute;
  516. align-self:flex-start;
  517. padding:0px 0px 0px 0px;
  518. box-sizing:border-box;
  519. width:100%;
  520. }
  521. #u156900_text {
  522. border-width:0px;
  523. white-space:nowrap;
  524. text-transform:none;
  525. }
  526. #u156901 {
  527. border-width:0px;
  528. position:absolute;
  529. left:0px;
  530. top:0px;
  531. width:0px;
  532. height:0px;
  533. }
  534. #u156902_img {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:24px;
  540. height:24px;
  541. }
  542. #u156902 {
  543. border-width:0px;
  544. position:absolute;
  545. left:792px;
  546. top:794px;
  547. width:24px;
  548. height:24px;
  549. display:flex;
  550. font-size:8px;
  551. }
  552. #u156902 .text {
  553. position:absolute;
  554. align-self:center;
  555. padding:2px 2px 2px 2px;
  556. box-sizing:border-box;
  557. width:100%;
  558. }
  559. #u156902_text {
  560. border-width:0px;
  561. word-wrap:break-word;
  562. text-transform:none;
  563. }
  564. #u156903_div {
  565. border-width:0px;
  566. position:absolute;
  567. left:0px;
  568. top:0px;
  569. width:25px;
  570. height:17px;
  571. background:inherit;
  572. background-color:rgba(255, 255, 255, 0);
  573. border:none;
  574. border-radius:0px;
  575. -moz-box-shadow:none;
  576. -webkit-box-shadow:none;
  577. box-shadow:none;
  578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  579. font-weight:400;
  580. font-style:normal;
  581. font-size:12px;
  582. }
  583. #u156903 {
  584. border-width:0px;
  585. position:absolute;
  586. left:792px;
  587. top:819px;
  588. width:25px;
  589. height:17px;
  590. display:flex;
  591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  592. font-weight:400;
  593. font-style:normal;
  594. font-size:12px;
  595. }
  596. #u156903 .text {
  597. position:absolute;
  598. align-self:flex-start;
  599. padding:0px 0px 0px 0px;
  600. box-sizing:border-box;
  601. width:100%;
  602. }
  603. #u156903_text {
  604. border-width:0px;
  605. white-space:nowrap;
  606. text-transform:none;
  607. }
  608. #u156904_div {
  609. border-width:0px;
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:375px;
  614. height:681px;
  615. background:inherit;
  616. background-color:rgba(242, 242, 242, 0.462745098039216);
  617. border:none;
  618. border-radius:0px;
  619. -moz-box-shadow:none;
  620. -webkit-box-shadow:none;
  621. box-shadow:none;
  622. }
  623. #u156904 {
  624. border-width:0px;
  625. position:absolute;
  626. left:482px;
  627. top:107px;
  628. width:375px;
  629. height:681px;
  630. display:flex;
  631. }
  632. #u156904 .text {
  633. position:absolute;
  634. align-self:center;
  635. padding:2px 2px 2px 2px;
  636. box-sizing:border-box;
  637. width:100%;
  638. }
  639. #u156904_text {
  640. border-width:0px;
  641. word-wrap:break-word;
  642. text-transform:none;
  643. visibility:hidden;
  644. }
  645. #u156905 {
  646. border-width:0px;
  647. position:absolute;
  648. left:0px;
  649. top:0px;
  650. width:0px;
  651. height:0px;
  652. }
  653. #u156906_img {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:24px;
  659. height:24px;
  660. }
  661. #u156906 {
  662. border-width:0px;
  663. position:absolute;
  664. left:704px;
  665. top:792px;
  666. width:24px;
  667. height:24px;
  668. display:flex;
  669. font-size:8px;
  670. }
  671. #u156906 .text {
  672. position:absolute;
  673. align-self:center;
  674. padding:2px 2px 2px 2px;
  675. box-sizing:border-box;
  676. width:100%;
  677. }
  678. #u156906_text {
  679. border-width:0px;
  680. word-wrap:break-word;
  681. text-transform:none;
  682. }
  683. #u156907_div {
  684. border-width:0px;
  685. position:absolute;
  686. left:0px;
  687. top:0px;
  688. width:37px;
  689. height:17px;
  690. background:inherit;
  691. background-color:rgba(255, 255, 255, 0);
  692. border:none;
  693. border-radius:0px;
  694. -moz-box-shadow:none;
  695. -webkit-box-shadow:none;
  696. box-shadow:none;
  697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  698. font-weight:400;
  699. font-style:normal;
  700. font-size:12px;
  701. }
  702. #u156907 {
  703. border-width:0px;
  704. position:absolute;
  705. left:698px;
  706. top:817px;
  707. width:37px;
  708. height:17px;
  709. display:flex;
  710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  711. font-weight:400;
  712. font-style:normal;
  713. font-size:12px;
  714. }
  715. #u156907 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u156907_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u156908 {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:0px;
  733. height:0px;
  734. }
  735. #u156909_img {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:24px;
  741. height:24px;
  742. }
  743. #u156909 {
  744. border-width:0px;
  745. position:absolute;
  746. left:610px;
  747. top:792px;
  748. width:24px;
  749. height:24px;
  750. display:flex;
  751. font-size:8px;
  752. }
  753. #u156909 .text {
  754. position:absolute;
  755. align-self:center;
  756. padding:2px 2px 2px 2px;
  757. box-sizing:border-box;
  758. width:100%;
  759. }
  760. #u156909_text {
  761. border-width:0px;
  762. word-wrap:break-word;
  763. text-transform:none;
  764. }
  765. #u156910_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:37px;
  771. height:17px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:12px;
  783. }
  784. #u156910 {
  785. border-width:0px;
  786. position:absolute;
  787. left:604px;
  788. top:817px;
  789. width:37px;
  790. height:17px;
  791. display:flex;
  792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  793. font-weight:400;
  794. font-style:normal;
  795. font-size:12px;
  796. }
  797. #u156910 .text {
  798. position:absolute;
  799. align-self:flex-start;
  800. padding:0px 0px 0px 0px;
  801. box-sizing:border-box;
  802. width:100%;
  803. }
  804. #u156910_text {
  805. border-width:0px;
  806. white-space:nowrap;
  807. text-transform:none;
  808. }
  809. #u156911_img {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:375px;
  815. height:734px;
  816. }
  817. #u156911 {
  818. border-width:0px;
  819. position:absolute;
  820. left:482px;
  821. top:106px;
  822. width:375px;
  823. height:734px;
  824. display:flex;
  825. }
  826. #u156911 .text {
  827. position:absolute;
  828. align-self:center;
  829. padding:2px 2px 2px 2px;
  830. box-sizing:border-box;
  831. width:100%;
  832. }
  833. #u156911_text {
  834. border-width:0px;
  835. word-wrap:break-word;
  836. text-transform:none;
  837. visibility:hidden;
  838. }
  839. #u156913_img {
  840. border-width:0px;
  841. position:absolute;
  842. left:0px;
  843. top:0px;
  844. width:433px;
  845. height:865px;
  846. }
  847. #u156913 {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:433px;
  853. height:865px;
  854. display:flex;
  855. }
  856. #u156913 .text {
  857. position:absolute;
  858. align-self:center;
  859. padding:2px 2px 2px 2px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u156913_text {
  864. border-width:0px;
  865. word-wrap:break-word;
  866. text-transform:none;
  867. visibility:hidden;
  868. }
  869. #u156914_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:375px;
  875. height:40px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 1);
  878. box-sizing:border-box;
  879. border-width:1px;
  880. border-style:solid;
  881. border-color:rgba(215, 215, 215, 1);
  882. border-left:0px;
  883. border-top:0px;
  884. border-right:0px;
  885. border-radius:0px;
  886. border-bottom-right-radius:0px;
  887. border-bottom-left-radius:0px;
  888. -moz-box-shadow:none;
  889. -webkit-box-shadow:none;
  890. box-shadow:none;
  891. }
  892. #u156914 {
  893. border-width:0px;
  894. position:absolute;
  895. left:29px;
  896. top:67px;
  897. width:375px;
  898. height:40px;
  899. display:flex;
  900. }
  901. #u156914 .text {
  902. position:absolute;
  903. align-self:center;
  904. padding:2px 2px 2px 2px;
  905. box-sizing:border-box;
  906. width:100%;
  907. }
  908. #u156914_text {
  909. border-width:0px;
  910. word-wrap:break-word;
  911. text-transform:none;
  912. visibility:hidden;
  913. }
  914. #u156915 {
  915. border-width:0px;
  916. position:absolute;
  917. left:0px;
  918. top:0px;
  919. width:0px;
  920. height:0px;
  921. }
  922. #u156916_div {
  923. border-width:0px;
  924. position:absolute;
  925. left:0px;
  926. top:0px;
  927. width:88px;
  928. height:32px;
  929. background:inherit;
  930. background-color:rgba(255, 255, 255, 1);
  931. box-sizing:border-box;
  932. border-width:1px;
  933. border-style:solid;
  934. border-color:rgba(242, 242, 242, 1);
  935. border-radius:33px;
  936. -moz-box-shadow:none;
  937. -webkit-box-shadow:none;
  938. box-shadow:none;
  939. }
  940. #u156916 {
  941. border-width:0px;
  942. position:absolute;
  943. left:309px;
  944. top:71px;
  945. width:88px;
  946. height:32px;
  947. display:flex;
  948. }
  949. #u156916 .text {
  950. position:absolute;
  951. align-self:center;
  952. padding:2px 2px 2px 2px;
  953. box-sizing:border-box;
  954. width:100%;
  955. }
  956. #u156916_text {
  957. border-width:0px;
  958. word-wrap:break-word;
  959. text-transform:none;
  960. visibility:hidden;
  961. }
  962. #u156917 {
  963. border-width:0px;
  964. position:absolute;
  965. left:0px;
  966. top:0px;
  967. width:0px;
  968. height:0px;
  969. }
  970. #u156918_img {
  971. border-width:0px;
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:18px;
  976. height:18px;
  977. }
  978. #u156918 {
  979. border-width:0px;
  980. position:absolute;
  981. left:372px;
  982. top:78px;
  983. width:18px;
  984. height:18px;
  985. display:flex;
  986. }
  987. #u156918 .text {
  988. position:absolute;
  989. align-self:center;
  990. padding:2px 2px 2px 2px;
  991. box-sizing:border-box;
  992. width:100%;
  993. }
  994. #u156918_text {
  995. border-width:0px;
  996. word-wrap:break-word;
  997. text-transform:none;
  998. visibility:hidden;
  999. }
  1000. #u156919_img {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:0px;
  1004. top:0px;
  1005. width:6px;
  1006. height:6px;
  1007. }
  1008. #u156919 {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:378px;
  1012. top:84px;
  1013. width:6px;
  1014. height:6px;
  1015. display:flex;
  1016. }
  1017. #u156919 .text {
  1018. position:absolute;
  1019. align-self:center;
  1020. padding:2px 2px 2px 2px;
  1021. box-sizing:border-box;
  1022. width:100%;
  1023. }
  1024. #u156919_text {
  1025. border-width:0px;
  1026. word-wrap:break-word;
  1027. text-transform:none;
  1028. visibility:hidden;
  1029. }
  1030. #u156920 {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:0px;
  1034. top:0px;
  1035. width:0px;
  1036. height:0px;
  1037. }
  1038. #u156921_img {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:5px;
  1044. height:5px;
  1045. }
  1046. #u156921 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:323px;
  1050. top:85px;
  1051. width:5px;
  1052. height:5px;
  1053. display:flex;
  1054. }
  1055. #u156921 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u156921_text {
  1063. border-width:0px;
  1064. word-wrap:break-word;
  1065. text-transform:none;
  1066. visibility:hidden;
  1067. }
  1068. #u156922_img {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:0px;
  1073. width:5px;
  1074. height:5px;
  1075. }
  1076. #u156922 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:339px;
  1080. top:85px;
  1081. width:5px;
  1082. height:5px;
  1083. display:flex;
  1084. }
  1085. #u156922 .text {
  1086. position:absolute;
  1087. align-self:center;
  1088. padding:2px 2px 2px 2px;
  1089. box-sizing:border-box;
  1090. width:100%;
  1091. }
  1092. #u156922_text {
  1093. border-width:0px;
  1094. word-wrap:break-word;
  1095. text-transform:none;
  1096. visibility:hidden;
  1097. }
  1098. #u156923_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:7px;
  1104. height:7px;
  1105. }
  1106. #u156923 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:330px;
  1110. top:84px;
  1111. width:7px;
  1112. height:7px;
  1113. display:flex;
  1114. }
  1115. #u156923 .text {
  1116. position:absolute;
  1117. align-self:center;
  1118. padding:2px 2px 2px 2px;
  1119. box-sizing:border-box;
  1120. width:100%;
  1121. }
  1122. #u156923_text {
  1123. border-width:0px;
  1124. word-wrap:break-word;
  1125. text-transform:none;
  1126. visibility:hidden;
  1127. }
  1128. #u156924_img {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:19px;
  1134. height:2px;
  1135. }
  1136. #u156924 {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:347px;
  1140. top:87px;
  1141. width:18px;
  1142. height:1px;
  1143. display:flex;
  1144. -webkit-transform:rotate(90deg);
  1145. -moz-transform:rotate(90deg);
  1146. -ms-transform:rotate(90deg);
  1147. transform:rotate(90deg);
  1148. }
  1149. #u156924 .text {
  1150. position:absolute;
  1151. align-self:center;
  1152. padding:2px 2px 2px 2px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u156924_text {
  1157. border-width:0px;
  1158. word-wrap:break-word;
  1159. text-transform:none;
  1160. visibility:hidden;
  1161. }
  1162. #u156925_img {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:375px;
  1168. height:44px;
  1169. }
  1170. #u156925 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:29px;
  1174. top:24px;
  1175. width:375px;
  1176. height:44px;
  1177. display:flex;
  1178. }
  1179. #u156925 .text {
  1180. position:absolute;
  1181. align-self:center;
  1182. padding:2px 2px 2px 2px;
  1183. box-sizing:border-box;
  1184. width:100%;
  1185. }
  1186. #u156925_text {
  1187. border-width:0px;
  1188. word-wrap:break-word;
  1189. text-transform:none;
  1190. visibility:hidden;
  1191. }
  1192. #u156926_div {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:0px;
  1196. top:0px;
  1197. width:375px;
  1198. height:50px;
  1199. background:inherit;
  1200. background-color:rgba(255, 255, 255, 1);
  1201. box-sizing:border-box;
  1202. border-width:1px;
  1203. border-style:solid;
  1204. border-color:rgba(242, 242, 242, 1);
  1205. border-radius:26px;
  1206. border-top-left-radius:0px;
  1207. border-top-right-radius:0px;
  1208. -moz-box-shadow:none;
  1209. -webkit-box-shadow:none;
  1210. box-shadow:none;
  1211. }
  1212. #u156926 {
  1213. border-width:0px;
  1214. position:absolute;
  1215. left:29px;
  1216. top:788px;
  1217. width:375px;
  1218. height:50px;
  1219. display:flex;
  1220. }
  1221. #u156926 .text {
  1222. position:absolute;
  1223. align-self:center;
  1224. padding:2px 2px 2px 2px;
  1225. box-sizing:border-box;
  1226. width:100%;
  1227. }
  1228. #u156926_text {
  1229. border-width:0px;
  1230. word-wrap:break-word;
  1231. text-transform:none;
  1232. visibility:hidden;
  1233. }
  1234. #u156927 {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:0px;
  1240. height:0px;
  1241. }
  1242. #u156928_img {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:0px;
  1246. top:0px;
  1247. width:24px;
  1248. height:24px;
  1249. }
  1250. #u156928 {
  1251. border-width:0px;
  1252. position:absolute;
  1253. left:69px;
  1254. top:792px;
  1255. width:24px;
  1256. height:24px;
  1257. display:flex;
  1258. font-size:8px;
  1259. }
  1260. #u156928 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:2px 2px 2px 2px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u156928_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. }
  1272. #u156929_div {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:25px;
  1278. height:17px;
  1279. background:inherit;
  1280. background-color:rgba(255, 255, 255, 0);
  1281. border:none;
  1282. border-radius:0px;
  1283. -moz-box-shadow:none;
  1284. -webkit-box-shadow:none;
  1285. box-shadow:none;
  1286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1287. font-weight:400;
  1288. font-style:normal;
  1289. font-size:12px;
  1290. }
  1291. #u156929 {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:69px;
  1295. top:817px;
  1296. width:25px;
  1297. height:17px;
  1298. display:flex;
  1299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1300. font-weight:400;
  1301. font-style:normal;
  1302. font-size:12px;
  1303. }
  1304. #u156929 .text {
  1305. position:absolute;
  1306. align-self:flex-start;
  1307. padding:0px 0px 0px 0px;
  1308. box-sizing:border-box;
  1309. width:100%;
  1310. }
  1311. #u156929_text {
  1312. border-width:0px;
  1313. white-space:nowrap;
  1314. text-transform:none;
  1315. }
  1316. #u156930 {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:0px;
  1320. top:0px;
  1321. width:0px;
  1322. height:0px;
  1323. }
  1324. #u156931_img {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:24px;
  1330. height:24px;
  1331. }
  1332. #u156931 {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:339px;
  1336. top:794px;
  1337. width:24px;
  1338. height:24px;
  1339. display:flex;
  1340. font-size:8px;
  1341. }
  1342. #u156931 .text {
  1343. position:absolute;
  1344. align-self:center;
  1345. padding:2px 2px 2px 2px;
  1346. box-sizing:border-box;
  1347. width:100%;
  1348. }
  1349. #u156931_text {
  1350. border-width:0px;
  1351. word-wrap:break-word;
  1352. text-transform:none;
  1353. }
  1354. #u156932_div {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:0px;
  1358. top:0px;
  1359. width:25px;
  1360. height:17px;
  1361. background:inherit;
  1362. background-color:rgba(255, 255, 255, 0);
  1363. border:none;
  1364. border-radius:0px;
  1365. -moz-box-shadow:none;
  1366. -webkit-box-shadow:none;
  1367. box-shadow:none;
  1368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1369. font-weight:400;
  1370. font-style:normal;
  1371. font-size:12px;
  1372. }
  1373. #u156932 {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:339px;
  1377. top:819px;
  1378. width:25px;
  1379. height:17px;
  1380. display:flex;
  1381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1382. font-weight:400;
  1383. font-style:normal;
  1384. font-size:12px;
  1385. }
  1386. #u156932 .text {
  1387. position:absolute;
  1388. align-self:flex-start;
  1389. padding:0px 0px 0px 0px;
  1390. box-sizing:border-box;
  1391. width:100%;
  1392. }
  1393. #u156932_text {
  1394. border-width:0px;
  1395. white-space:nowrap;
  1396. text-transform:none;
  1397. }
  1398. #u156933_div {
  1399. border-width:0px;
  1400. position:absolute;
  1401. left:0px;
  1402. top:0px;
  1403. width:375px;
  1404. height:681px;
  1405. background:inherit;
  1406. background-color:rgba(242, 242, 242, 0.462745098039216);
  1407. border:none;
  1408. border-radius:0px;
  1409. -moz-box-shadow:none;
  1410. -webkit-box-shadow:none;
  1411. box-shadow:none;
  1412. }
  1413. #u156933 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:29px;
  1417. top:107px;
  1418. width:375px;
  1419. height:681px;
  1420. display:flex;
  1421. }
  1422. #u156933 .text {
  1423. position:absolute;
  1424. align-self:center;
  1425. padding:2px 2px 2px 2px;
  1426. box-sizing:border-box;
  1427. width:100%;
  1428. }
  1429. #u156933_text {
  1430. border-width:0px;
  1431. word-wrap:break-word;
  1432. text-transform:none;
  1433. visibility:hidden;
  1434. }
  1435. #u156934 {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:0px;
  1441. height:0px;
  1442. }
  1443. #u156935_img {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:24px;
  1449. height:24px;
  1450. }
  1451. #u156935 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:251px;
  1455. top:792px;
  1456. width:24px;
  1457. height:24px;
  1458. display:flex;
  1459. font-size:8px;
  1460. }
  1461. #u156935 .text {
  1462. position:absolute;
  1463. align-self:center;
  1464. padding:2px 2px 2px 2px;
  1465. box-sizing:border-box;
  1466. width:100%;
  1467. }
  1468. #u156935_text {
  1469. border-width:0px;
  1470. word-wrap:break-word;
  1471. text-transform:none;
  1472. }
  1473. #u156936_div {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:37px;
  1479. height:17px;
  1480. background:inherit;
  1481. background-color:rgba(255, 255, 255, 0);
  1482. border:none;
  1483. border-radius:0px;
  1484. -moz-box-shadow:none;
  1485. -webkit-box-shadow:none;
  1486. box-shadow:none;
  1487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1488. font-weight:400;
  1489. font-style:normal;
  1490. font-size:12px;
  1491. }
  1492. #u156936 {
  1493. border-width:0px;
  1494. position:absolute;
  1495. left:245px;
  1496. top:817px;
  1497. width:37px;
  1498. height:17px;
  1499. display:flex;
  1500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1501. font-weight:400;
  1502. font-style:normal;
  1503. font-size:12px;
  1504. }
  1505. #u156936 .text {
  1506. position:absolute;
  1507. align-self:flex-start;
  1508. padding:0px 0px 0px 0px;
  1509. box-sizing:border-box;
  1510. width:100%;
  1511. }
  1512. #u156936_text {
  1513. border-width:0px;
  1514. white-space:nowrap;
  1515. text-transform:none;
  1516. }
  1517. #u156937 {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:0px;
  1521. top:0px;
  1522. width:0px;
  1523. height:0px;
  1524. }
  1525. #u156938_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:24px;
  1531. height:24px;
  1532. }
  1533. #u156938 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:157px;
  1537. top:792px;
  1538. width:24px;
  1539. height:24px;
  1540. display:flex;
  1541. font-size:8px;
  1542. }
  1543. #u156938 .text {
  1544. position:absolute;
  1545. align-self:center;
  1546. padding:2px 2px 2px 2px;
  1547. box-sizing:border-box;
  1548. width:100%;
  1549. }
  1550. #u156938_text {
  1551. border-width:0px;
  1552. word-wrap:break-word;
  1553. text-transform:none;
  1554. }
  1555. #u156939_div {
  1556. border-width:0px;
  1557. position:absolute;
  1558. left:0px;
  1559. top:0px;
  1560. width:37px;
  1561. height:17px;
  1562. background:inherit;
  1563. background-color:rgba(255, 255, 255, 0);
  1564. border:none;
  1565. border-radius:0px;
  1566. -moz-box-shadow:none;
  1567. -webkit-box-shadow:none;
  1568. box-shadow:none;
  1569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1570. font-weight:400;
  1571. font-style:normal;
  1572. font-size:12px;
  1573. }
  1574. #u156939 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:151px;
  1578. top:817px;
  1579. width:37px;
  1580. height:17px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:12px;
  1586. }
  1587. #u156939 .text {
  1588. position:absolute;
  1589. align-self:flex-start;
  1590. padding:0px 0px 0px 0px;
  1591. box-sizing:border-box;
  1592. width:100%;
  1593. }
  1594. #u156939_text {
  1595. border-width:0px;
  1596. white-space:nowrap;
  1597. text-transform:none;
  1598. }
  1599. #u156940_div {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:0px;
  1603. top:0px;
  1604. width:375px;
  1605. height:734px;
  1606. background:inherit;
  1607. background-color:rgba(242, 242, 242, 0.996078431372549);
  1608. border:none;
  1609. border-top:0px;
  1610. border-radius:28px;
  1611. border-top-left-radius:0px;
  1612. border-top-right-radius:0px;
  1613. -moz-box-shadow:none;
  1614. -webkit-box-shadow:none;
  1615. box-shadow:none;
  1616. }
  1617. #u156940 {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:29px;
  1621. top:106px;
  1622. width:375px;
  1623. height:734px;
  1624. display:flex;
  1625. }
  1626. #u156940 .text {
  1627. position:absolute;
  1628. align-self:center;
  1629. padding:2px 2px 2px 2px;
  1630. box-sizing:border-box;
  1631. width:100%;
  1632. }
  1633. #u156940_text {
  1634. border-width:0px;
  1635. word-wrap:break-word;
  1636. text-transform:none;
  1637. visibility:hidden;
  1638. }
  1639. #u156941_div {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:0px;
  1643. top:0px;
  1644. width:375px;
  1645. height:240px;
  1646. background:inherit;
  1647. background-color:rgba(255, 255, 255, 0.996078431372549);
  1648. border:none;
  1649. border-radius:0px;
  1650. -moz-box-shadow:none;
  1651. -webkit-box-shadow:none;
  1652. box-shadow:none;
  1653. }
  1654. #u156941 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:29px;
  1658. top:167px;
  1659. width:375px;
  1660. height:240px;
  1661. display:flex;
  1662. }
  1663. #u156941 .text {
  1664. position:absolute;
  1665. align-self:center;
  1666. padding:2px 2px 2px 2px;
  1667. box-sizing:border-box;
  1668. width:100%;
  1669. }
  1670. #u156941_text {
  1671. border-width:0px;
  1672. word-wrap:break-word;
  1673. text-transform:none;
  1674. visibility:hidden;
  1675. }
  1676. #u156942_div {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:0px;
  1680. top:0px;
  1681. width:100px;
  1682. height:59px;
  1683. background:inherit;
  1684. background-color:rgba(255, 255, 255, 0.996078431372549);
  1685. box-sizing:border-box;
  1686. border-width:1px;
  1687. border-style:solid;
  1688. border-color:rgba(215, 215, 215, 1);
  1689. border-radius:4px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. font-size:18px;
  1694. }
  1695. #u156942 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:165px;
  1699. top:263px;
  1700. width:100px;
  1701. height:59px;
  1702. display:flex;
  1703. font-size:18px;
  1704. }
  1705. #u156942 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 2px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u156942_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. }
  1717. #u156943_div {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:103px;
  1723. height:33px;
  1724. background:inherit;
  1725. background-color:rgba(255, 255, 255, 0);
  1726. border:none;
  1727. border-left:0px;
  1728. border-top:0px;
  1729. border-right:0px;
  1730. border-radius:0px;
  1731. border-bottom-right-radius:0px;
  1732. border-bottom-left-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. }
  1740. #u156943 {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:46px;
  1744. top:217px;
  1745. width:103px;
  1746. height:33px;
  1747. display:flex;
  1748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1749. font-weight:400;
  1750. font-style:normal;
  1751. }
  1752. #u156943 .text {
  1753. position:absolute;
  1754. align-self:flex-start;
  1755. padding:0px 0px 0px 0px;
  1756. box-sizing:border-box;
  1757. width:100%;
  1758. }
  1759. #u156943_text {
  1760. border-width:0px;
  1761. white-space:nowrap;
  1762. text-transform:none;
  1763. }
  1764. #u156944_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:100px;
  1770. height:60px;
  1771. background:inherit;
  1772. background-color:rgba(24, 144, 255, 1);
  1773. border:none;
  1774. border-radius:4px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-size:18px;
  1779. color:#FFFFFF;
  1780. }
  1781. #u156944 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:46px;
  1785. top:263px;
  1786. width:100px;
  1787. height:60px;
  1788. display:flex;
  1789. font-size:18px;
  1790. color:#FFFFFF;
  1791. }
  1792. #u156944 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:2px 2px 2px 2px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u156944_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. }
  1804. #u156945_div {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:100px;
  1810. height:59px;
  1811. background:inherit;
  1812. background-color:rgba(255, 255, 255, 0.996078431372549);
  1813. box-sizing:border-box;
  1814. border-width:1px;
  1815. border-style:solid;
  1816. border-color:rgba(215, 215, 215, 1);
  1817. border-radius:4px;
  1818. -moz-box-shadow:none;
  1819. -webkit-box-shadow:none;
  1820. box-shadow:none;
  1821. font-size:18px;
  1822. }
  1823. #u156945 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:284px;
  1827. top:263px;
  1828. width:100px;
  1829. height:59px;
  1830. display:flex;
  1831. font-size:18px;
  1832. }
  1833. #u156945 .text {
  1834. position:absolute;
  1835. align-self:center;
  1836. padding:2px 2px 2px 2px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u156945_text {
  1841. border-width:0px;
  1842. word-wrap:break-word;
  1843. text-transform:none;
  1844. }
  1845. #u156946_div {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:100px;
  1851. height:59px;
  1852. background:inherit;
  1853. background-color:rgba(255, 255, 255, 0.996078431372549);
  1854. box-sizing:border-box;
  1855. border-width:1px;
  1856. border-style:solid;
  1857. border-color:rgba(215, 215, 215, 1);
  1858. border-radius:4px;
  1859. -moz-box-shadow:none;
  1860. -webkit-box-shadow:none;
  1861. box-shadow:none;
  1862. font-size:18px;
  1863. }
  1864. #u156946 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:165px;
  1868. top:332px;
  1869. width:100px;
  1870. height:59px;
  1871. display:flex;
  1872. font-size:18px;
  1873. }
  1874. #u156946 .text {
  1875. position:absolute;
  1876. align-self:center;
  1877. padding:2px 2px 2px 2px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u156946_text {
  1882. border-width:0px;
  1883. word-wrap:break-word;
  1884. text-transform:none;
  1885. }
  1886. #u156947_div {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:100px;
  1892. height:59px;
  1893. background:inherit;
  1894. background-color:rgba(255, 255, 255, 0.996078431372549);
  1895. box-sizing:border-box;
  1896. border-width:1px;
  1897. border-style:solid;
  1898. border-color:rgba(215, 215, 215, 1);
  1899. border-radius:4px;
  1900. -moz-box-shadow:none;
  1901. -webkit-box-shadow:none;
  1902. box-shadow:none;
  1903. font-size:18px;
  1904. }
  1905. #u156947 {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:284px;
  1909. top:332px;
  1910. width:100px;
  1911. height:59px;
  1912. display:flex;
  1913. font-size:18px;
  1914. }
  1915. #u156947 .text {
  1916. position:absolute;
  1917. align-self:center;
  1918. padding:2px 2px 2px 2px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u156947_text {
  1923. border-width:0px;
  1924. word-wrap:break-word;
  1925. text-transform:none;
  1926. }
  1927. #u156948_div {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:100px;
  1933. height:59px;
  1934. background:inherit;
  1935. background-color:rgba(255, 255, 255, 0.996078431372549);
  1936. box-sizing:border-box;
  1937. border-width:1px;
  1938. border-style:solid;
  1939. border-color:rgba(215, 215, 215, 1);
  1940. border-radius:4px;
  1941. -moz-box-shadow:none;
  1942. -webkit-box-shadow:none;
  1943. box-shadow:none;
  1944. font-size:18px;
  1945. }
  1946. #u156948 {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:46px;
  1950. top:332px;
  1951. width:100px;
  1952. height:59px;
  1953. display:flex;
  1954. font-size:18px;
  1955. }
  1956. #u156948 .text {
  1957. position:absolute;
  1958. align-self:center;
  1959. padding:2px 2px 2px 2px;
  1960. box-sizing:border-box;
  1961. width:100%;
  1962. }
  1963. #u156948_text {
  1964. border-width:0px;
  1965. word-wrap:break-word;
  1966. text-transform:none;
  1967. }
  1968. #u156949_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:304px;
  1974. height:20px;
  1975. background:inherit;
  1976. background-color:rgba(255, 255, 255, 0);
  1977. border:none;
  1978. border-left:0px;
  1979. border-top:0px;
  1980. border-right:0px;
  1981. border-radius:0px;
  1982. border-bottom-right-radius:0px;
  1983. border-bottom-left-radius:0px;
  1984. -moz-box-shadow:none;
  1985. -webkit-box-shadow:none;
  1986. box-shadow:none;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:14px;
  1991. }
  1992. #u156949 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:46px;
  1996. top:187px;
  1997. width:304px;
  1998. height:20px;
  1999. display:flex;
  2000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:14px;
  2004. }
  2005. #u156949 .text {
  2006. position:absolute;
  2007. align-self:flex-start;
  2008. padding:0px 0px 0px 0px;
  2009. box-sizing:border-box;
  2010. width:100%;
  2011. }
  2012. #u156949_text {
  2013. border-width:0px;
  2014. white-space:nowrap;
  2015. text-transform:none;
  2016. }
  2017. #u156950 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:0px;
  2023. height:0px;
  2024. }
  2025. #u156951_div {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:108px;
  2031. height:20px;
  2032. background:inherit;
  2033. background-color:rgba(255, 255, 255, 0);
  2034. border:none;
  2035. border-left:0px;
  2036. border-top:0px;
  2037. border-right:0px;
  2038. border-radius:0px;
  2039. border-bottom-right-radius:0px;
  2040. border-bottom-left-radius:0px;
  2041. -moz-box-shadow:none;
  2042. -webkit-box-shadow:none;
  2043. box-shadow:none;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:14px;
  2048. }
  2049. #u156951 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:73px;
  2053. top:417px;
  2054. width:108px;
  2055. height:20px;
  2056. display:flex;
  2057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2058. font-weight:400;
  2059. font-style:normal;
  2060. font-size:14px;
  2061. }
  2062. #u156951 .text {
  2063. position:absolute;
  2064. align-self:flex-start;
  2065. padding:0px 0px 0px 0px;
  2066. box-sizing:border-box;
  2067. width:100%;
  2068. }
  2069. #u156951_text {
  2070. border-width:0px;
  2071. white-space:nowrap;
  2072. text-transform:none;
  2073. }
  2074. #u156952_img {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:0px;
  2078. top:0px;
  2079. width:17px;
  2080. height:15px;
  2081. }
  2082. #u156952 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:46px;
  2086. top:420px;
  2087. width:17px;
  2088. height:15px;
  2089. display:flex;
  2090. }
  2091. #u156952 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 2px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u156952_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u156953_div {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:73px;
  2110. height:25px;
  2111. background:inherit;
  2112. background-color:rgba(255, 255, 255, 0);
  2113. border:none;
  2114. border-radius:0px;
  2115. -moz-box-shadow:none;
  2116. -webkit-box-shadow:none;
  2117. box-shadow:none;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:18px;
  2122. }
  2123. #u156953 {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:178px;
  2127. top:73px;
  2128. width:73px;
  2129. height:25px;
  2130. display:flex;
  2131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2132. font-weight:400;
  2133. font-style:normal;
  2134. font-size:18px;
  2135. }
  2136. #u156953 .text {
  2137. position:absolute;
  2138. align-self:flex-start;
  2139. padding:0px 0px 0px 0px;
  2140. box-sizing:border-box;
  2141. width:100%;
  2142. }
  2143. #u156953_text {
  2144. border-width:0px;
  2145. white-space:nowrap;
  2146. text-transform:none;
  2147. }
  2148. #u156954_img {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:0px;
  2152. top:0px;
  2153. width:15px;
  2154. height:15px;
  2155. }
  2156. #u156954 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:38px;
  2160. top:78px;
  2161. width:15px;
  2162. height:15px;
  2163. display:flex;
  2164. }
  2165. #u156954 .text {
  2166. position:absolute;
  2167. align-self:center;
  2168. padding:2px 2px 2px 2px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u156954_text {
  2173. border-width:0px;
  2174. word-wrap:break-word;
  2175. text-transform:none;
  2176. visibility:hidden;
  2177. }
  2178. #u156955_div {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:338px;
  2184. height:40px;
  2185. background:inherit;
  2186. background-color:rgba(0, 137, 254, 1);
  2187. border:none;
  2188. border-radius:32px;
  2189. -moz-box-shadow:none;
  2190. -webkit-box-shadow:none;
  2191. box-shadow:none;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:18px;
  2196. color:#FFFFFF;
  2197. }
  2198. #u156955 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:48px;
  2202. top:790px;
  2203. width:338px;
  2204. height:40px;
  2205. display:flex;
  2206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2207. font-weight:400;
  2208. font-style:normal;
  2209. font-size:18px;
  2210. color:#FFFFFF;
  2211. }
  2212. #u156955 .text {
  2213. position:absolute;
  2214. align-self:center;
  2215. padding:2px 2px 2px 2px;
  2216. box-sizing:border-box;
  2217. width:100%;
  2218. }
  2219. #u156955_text {
  2220. border-width:0px;
  2221. word-wrap:break-word;
  2222. text-transform:none;
  2223. }
  2224. #u156956_div {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:375px;
  2230. height:277px;
  2231. background:inherit;
  2232. background-color:rgba(255, 255, 255, 0.996078431372549);
  2233. border:none;
  2234. border-radius:0px;
  2235. -moz-box-shadow:none;
  2236. -webkit-box-shadow:none;
  2237. box-shadow:none;
  2238. }
  2239. #u156956 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:482px;
  2243. top:130px;
  2244. width:375px;
  2245. height:277px;
  2246. display:flex;
  2247. }
  2248. #u156956 .text {
  2249. position:absolute;
  2250. align-self:center;
  2251. padding:2px 2px 2px 2px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u156956_text {
  2256. border-width:0px;
  2257. word-wrap:break-word;
  2258. text-transform:none;
  2259. visibility:hidden;
  2260. }
  2261. #u156957_div {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:100px;
  2267. height:59px;
  2268. background:inherit;
  2269. background-color:rgba(255, 255, 255, 0.996078431372549);
  2270. box-sizing:border-box;
  2271. border-width:1px;
  2272. border-style:solid;
  2273. border-color:rgba(215, 215, 215, 1);
  2274. border-radius:4px;
  2275. -moz-box-shadow:none;
  2276. -webkit-box-shadow:none;
  2277. box-shadow:none;
  2278. font-size:18px;
  2279. }
  2280. #u156957 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:618px;
  2284. top:263px;
  2285. width:100px;
  2286. height:59px;
  2287. display:flex;
  2288. font-size:18px;
  2289. }
  2290. #u156957 .text {
  2291. position:absolute;
  2292. align-self:center;
  2293. padding:2px 2px 2px 2px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u156957_text {
  2298. border-width:0px;
  2299. word-wrap:break-word;
  2300. text-transform:none;
  2301. }
  2302. #u156958_div {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:113px;
  2308. height:33px;
  2309. background:inherit;
  2310. background-color:rgba(255, 255, 255, 0);
  2311. border:none;
  2312. border-left:0px;
  2313. border-top:0px;
  2314. border-right:0px;
  2315. border-radius:0px;
  2316. border-bottom-right-radius:0px;
  2317. border-bottom-left-radius:0px;
  2318. -moz-box-shadow:none;
  2319. -webkit-box-shadow:none;
  2320. box-shadow:none;
  2321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2322. font-weight:400;
  2323. font-style:normal;
  2324. }
  2325. #u156958 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:499px;
  2329. top:217px;
  2330. width:113px;
  2331. height:33px;
  2332. display:flex;
  2333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. }
  2337. #u156958 .text {
  2338. position:absolute;
  2339. align-self:flex-start;
  2340. padding:0px 0px 0px 0px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u156958_text {
  2345. border-width:0px;
  2346. white-space:nowrap;
  2347. text-transform:none;
  2348. }
  2349. #u156959_div {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:100px;
  2355. height:59px;
  2356. background:inherit;
  2357. background-color:rgba(255, 255, 255, 0.996078431372549);
  2358. box-sizing:border-box;
  2359. border-width:1px;
  2360. border-style:solid;
  2361. border-color:rgba(215, 215, 215, 1);
  2362. border-radius:4px;
  2363. -moz-box-shadow:none;
  2364. -webkit-box-shadow:none;
  2365. box-shadow:none;
  2366. font-size:18px;
  2367. }
  2368. #u156959 {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:737px;
  2372. top:263px;
  2373. width:100px;
  2374. height:59px;
  2375. display:flex;
  2376. font-size:18px;
  2377. }
  2378. #u156959 .text {
  2379. position:absolute;
  2380. align-self:center;
  2381. padding:2px 2px 2px 2px;
  2382. box-sizing:border-box;
  2383. width:100%;
  2384. }
  2385. #u156959_text {
  2386. border-width:0px;
  2387. word-wrap:break-word;
  2388. text-transform:none;
  2389. }
  2390. #u156960_div {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:0px;
  2395. width:100px;
  2396. height:59px;
  2397. background:inherit;
  2398. background-color:rgba(0, 137, 254, 1);
  2399. box-sizing:border-box;
  2400. border-width:1px;
  2401. border-style:solid;
  2402. border-color:rgba(215, 215, 215, 1);
  2403. border-radius:4px;
  2404. -moz-box-shadow:none;
  2405. -webkit-box-shadow:none;
  2406. box-shadow:none;
  2407. font-size:18px;
  2408. color:#FFFFFF;
  2409. }
  2410. #u156960 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:618px;
  2414. top:332px;
  2415. width:100px;
  2416. height:59px;
  2417. display:flex;
  2418. font-size:18px;
  2419. color:#FFFFFF;
  2420. }
  2421. #u156960 .text {
  2422. position:absolute;
  2423. align-self:center;
  2424. padding:2px 2px 2px 2px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u156960_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. }
  2433. #u156961_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:100px;
  2439. height:59px;
  2440. background:inherit;
  2441. background-color:rgba(255, 255, 255, 0.996078431372549);
  2442. box-sizing:border-box;
  2443. border-width:1px;
  2444. border-style:solid;
  2445. border-color:rgba(215, 215, 215, 1);
  2446. border-radius:4px;
  2447. -moz-box-shadow:none;
  2448. -webkit-box-shadow:none;
  2449. box-shadow:none;
  2450. font-size:18px;
  2451. }
  2452. #u156961 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:737px;
  2456. top:332px;
  2457. width:100px;
  2458. height:59px;
  2459. display:flex;
  2460. font-size:18px;
  2461. }
  2462. #u156961 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 2px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u156961_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. }
  2474. #u156962_div {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:100px;
  2480. height:59px;
  2481. background:inherit;
  2482. background-color:rgba(255, 255, 255, 0.996078431372549);
  2483. box-sizing:border-box;
  2484. border-width:1px;
  2485. border-style:solid;
  2486. border-color:rgba(215, 215, 215, 1);
  2487. border-radius:4px;
  2488. -moz-box-shadow:none;
  2489. -webkit-box-shadow:none;
  2490. box-shadow:none;
  2491. font-size:18px;
  2492. }
  2493. #u156962 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:499px;
  2497. top:332px;
  2498. width:100px;
  2499. height:59px;
  2500. display:flex;
  2501. font-size:18px;
  2502. }
  2503. #u156962 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 2px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u156962_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. }
  2515. #u156963_div {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:304px;
  2521. height:20px;
  2522. background:inherit;
  2523. background-color:rgba(255, 255, 255, 0);
  2524. border:none;
  2525. border-left:0px;
  2526. border-top:0px;
  2527. border-right:0px;
  2528. border-radius:0px;
  2529. border-bottom-right-radius:0px;
  2530. border-bottom-left-radius:0px;
  2531. -moz-box-shadow:none;
  2532. -webkit-box-shadow:none;
  2533. box-shadow:none;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:14px;
  2538. }
  2539. #u156963 {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:499px;
  2543. top:187px;
  2544. width:304px;
  2545. height:20px;
  2546. display:flex;
  2547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:14px;
  2551. }
  2552. #u156963 .text {
  2553. position:absolute;
  2554. align-self:flex-start;
  2555. padding:0px 0px 0px 0px;
  2556. box-sizing:border-box;
  2557. width:100%;
  2558. }
  2559. #u156963_text {
  2560. border-width:0px;
  2561. white-space:nowrap;
  2562. text-transform:none;
  2563. }
  2564. #u156964_div {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:73px;
  2570. height:25px;
  2571. background:inherit;
  2572. background-color:rgba(255, 255, 255, 0);
  2573. border:none;
  2574. border-radius:0px;
  2575. -moz-box-shadow:none;
  2576. -webkit-box-shadow:none;
  2577. box-shadow:none;
  2578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2579. font-weight:400;
  2580. font-style:normal;
  2581. font-size:18px;
  2582. }
  2583. #u156964 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:631px;
  2587. top:73px;
  2588. width:73px;
  2589. height:25px;
  2590. display:flex;
  2591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2592. font-weight:400;
  2593. font-style:normal;
  2594. font-size:18px;
  2595. }
  2596. #u156964 .text {
  2597. position:absolute;
  2598. align-self:flex-start;
  2599. padding:0px 0px 0px 0px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u156964_text {
  2604. border-width:0px;
  2605. white-space:nowrap;
  2606. text-transform:none;
  2607. }
  2608. #u156965_img {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:15px;
  2614. height:15px;
  2615. }
  2616. #u156965 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:491px;
  2620. top:78px;
  2621. width:15px;
  2622. height:15px;
  2623. display:flex;
  2624. }
  2625. #u156965 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 2px 2px 2px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u156965_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. visibility:hidden;
  2637. }
  2638. #u156966_div {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:338px;
  2644. height:40px;
  2645. background:inherit;
  2646. background-color:rgba(0, 137, 254, 1);
  2647. border:none;
  2648. border-radius:32px;
  2649. -moz-box-shadow:none;
  2650. -webkit-box-shadow:none;
  2651. box-shadow:none;
  2652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:18px;
  2656. color:#FFFFFF;
  2657. }
  2658. #u156966 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:503px;
  2662. top:758px;
  2663. width:338px;
  2664. height:40px;
  2665. display:flex;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:18px;
  2670. color:#FFFFFF;
  2671. }
  2672. #u156966 .text {
  2673. position:absolute;
  2674. align-self:center;
  2675. padding:2px 2px 2px 2px;
  2676. box-sizing:border-box;
  2677. width:100%;
  2678. }
  2679. #u156966_text {
  2680. border-width:0px;
  2681. word-wrap:break-word;
  2682. text-transform:none;
  2683. }
  2684. #u156967_div {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:100px;
  2690. height:59px;
  2691. background:inherit;
  2692. background-color:rgba(255, 255, 255, 0.996078431372549);
  2693. box-sizing:border-box;
  2694. border-width:1px;
  2695. border-style:solid;
  2696. border-color:rgba(215, 215, 215, 1);
  2697. border-radius:4px;
  2698. -moz-box-shadow:none;
  2699. -webkit-box-shadow:none;
  2700. box-shadow:none;
  2701. font-size:18px;
  2702. }
  2703. #u156967 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:499px;
  2707. top:263px;
  2708. width:100px;
  2709. height:59px;
  2710. display:flex;
  2711. font-size:18px;
  2712. }
  2713. #u156967 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 2px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u156967_text {
  2721. border-width:0px;
  2722. word-wrap:break-word;
  2723. text-transform:none;
  2724. }
  2725. #u156968 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:0px;
  2731. height:0px;
  2732. }
  2733. #u156969_div {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:108px;
  2739. height:20px;
  2740. background:inherit;
  2741. background-color:rgba(255, 255, 255, 0);
  2742. border:none;
  2743. border-left:0px;
  2744. border-top:0px;
  2745. border-right:0px;
  2746. border-radius:0px;
  2747. border-bottom-right-radius:0px;
  2748. border-bottom-left-radius:0px;
  2749. -moz-box-shadow:none;
  2750. -webkit-box-shadow:none;
  2751. box-shadow:none;
  2752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2753. font-weight:400;
  2754. font-style:normal;
  2755. font-size:14px;
  2756. }
  2757. #u156969 {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:526px;
  2761. top:417px;
  2762. width:108px;
  2763. height:20px;
  2764. display:flex;
  2765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2766. font-weight:400;
  2767. font-style:normal;
  2768. font-size:14px;
  2769. }
  2770. #u156969 .text {
  2771. position:absolute;
  2772. align-self:flex-start;
  2773. padding:0px 0px 0px 0px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u156969_text {
  2778. border-width:0px;
  2779. white-space:nowrap;
  2780. text-transform:none;
  2781. }
  2782. #u156970_img {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:17px;
  2788. height:15px;
  2789. }
  2790. #u156970 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:499px;
  2794. top:420px;
  2795. width:17px;
  2796. height:15px;
  2797. display:flex;
  2798. }
  2799. #u156970 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:2px 2px 2px 2px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u156970_text {
  2807. border-width:0px;
  2808. word-wrap:break-word;
  2809. text-transform:none;
  2810. visibility:hidden;
  2811. }
  2812. #u156971_div {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:49px;
  2818. height:17px;
  2819. background:inherit;
  2820. background-color:rgba(255, 255, 255, 0);
  2821. border:none;
  2822. border-left:0px;
  2823. border-top:0px;
  2824. border-right:0px;
  2825. border-radius:0px;
  2826. border-bottom-right-radius:0px;
  2827. border-bottom-left-radius:0px;
  2828. -moz-box-shadow:none;
  2829. -webkit-box-shadow:none;
  2830. box-shadow:none;
  2831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2832. font-weight:400;
  2833. font-style:normal;
  2834. font-size:12px;
  2835. color:#D9001B;
  2836. }
  2837. #u156971 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:651px;
  2841. top:419px;
  2842. width:49px;
  2843. height:17px;
  2844. display:flex;
  2845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2846. font-weight:400;
  2847. font-style:normal;
  2848. font-size:12px;
  2849. color:#D9001B;
  2850. }
  2851. #u156971 .text {
  2852. position:absolute;
  2853. align-self:flex-start;
  2854. padding:0px 0px 0px 0px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u156971_text {
  2859. border-width:0px;
  2860. white-space:nowrap;
  2861. text-transform:none;
  2862. }
  2863. #u156972 label {
  2864. left:0px;
  2865. width:100%;
  2866. }
  2867. #u156972_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:3px;
  2872. width:12px;
  2873. height:12px;
  2874. }
  2875. #u156972 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:508px;
  2879. top:814px;
  2880. width:262px;
  2881. height:17px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. }
  2888. #u156972 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:0px 2px 0px 2px;
  2892. box-sizing:border-box;
  2893. }
  2894. #u156972_img.selected {
  2895. }
  2896. #u156972.selected {
  2897. }
  2898. #u156972_img.disabled {
  2899. }
  2900. #u156972.disabled {
  2901. }
  2902. #u156972_img.selectedDisabled {
  2903. }
  2904. #u156972.selectedDisabled {
  2905. }
  2906. #u156972_text {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:14px;
  2910. top:0px;
  2911. width:246px;
  2912. word-wrap:break-word;
  2913. text-transform:none;
  2914. }
  2915. #u156972_input {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:0px;
  2921. height:0px;
  2922. opacity:0;
  2923. }
  2924. #u156973 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:0px;
  2930. height:0px;
  2931. }
  2932. #u156974_div {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:375px;
  2938. height:815px;
  2939. background:inherit;
  2940. background-color:rgba(51, 51, 51, 0.6);
  2941. border:none;
  2942. border-radius:29px;
  2943. -moz-box-shadow:none;
  2944. -webkit-box-shadow:none;
  2945. box-shadow:none;
  2946. }
  2947. #u156974 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:945px;
  2951. top:25px;
  2952. width:375px;
  2953. height:815px;
  2954. display:flex;
  2955. }
  2956. #u156974 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u156974_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u156975_div {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:375px;
  2975. height:188px;
  2976. background:inherit;
  2977. background-color:rgba(242, 242, 242, 1);
  2978. border:none;
  2979. border-top:0px;
  2980. border-radius:29px;
  2981. border-top-left-radius:0px;
  2982. border-top-right-radius:0px;
  2983. -moz-box-shadow:none;
  2984. -webkit-box-shadow:none;
  2985. box-shadow:none;
  2986. }
  2987. #u156975 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:945px;
  2991. top:652px;
  2992. width:375px;
  2993. height:188px;
  2994. display:flex;
  2995. }
  2996. #u156975 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:2px 2px 2px 2px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u156975_text {
  3004. border-width:0px;
  3005. word-wrap:break-word;
  3006. text-transform:none;
  3007. visibility:hidden;
  3008. }
  3009. #u156976_div {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:375px;
  3015. height:59px;
  3016. background:inherit;
  3017. background-color:rgba(255, 255, 255, 0.996078431372549);
  3018. box-sizing:border-box;
  3019. border-width:1px;
  3020. border-style:solid;
  3021. border-color:rgba(242, 242, 242, 1);
  3022. border-radius:0px;
  3023. -moz-box-shadow:none;
  3024. -webkit-box-shadow:none;
  3025. box-shadow:none;
  3026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3027. font-weight:400;
  3028. font-style:normal;
  3029. font-size:14px;
  3030. }
  3031. #u156976 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:945px;
  3035. top:710px;
  3036. width:375px;
  3037. height:59px;
  3038. display:flex;
  3039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3040. font-weight:400;
  3041. font-style:normal;
  3042. font-size:14px;
  3043. }
  3044. #u156976 .text {
  3045. position:absolute;
  3046. align-self:center;
  3047. padding:2px 2px 2px 2px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u156976_text {
  3052. border-width:0px;
  3053. word-wrap:break-word;
  3054. text-transform:none;
  3055. }
  3056. #u156977_div {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:375px;
  3062. height:59px;
  3063. background:inherit;
  3064. background-color:rgba(255, 255, 255, 0.996078431372549);
  3065. box-sizing:border-box;
  3066. border-width:1px;
  3067. border-style:solid;
  3068. border-color:rgba(242, 242, 242, 1);
  3069. border-left:0px;
  3070. border-top:0px;
  3071. border-right:0px;
  3072. border-radius:0px;
  3073. border-bottom-right-radius:0px;
  3074. border-bottom-left-radius:0px;
  3075. -moz-box-shadow:none;
  3076. -webkit-box-shadow:none;
  3077. box-shadow:none;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:14px;
  3082. color:#AAAAAA;
  3083. }
  3084. #u156977 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:945px;
  3088. top:652px;
  3089. width:375px;
  3090. height:59px;
  3091. display:flex;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:14px;
  3096. color:#AAAAAA;
  3097. }
  3098. #u156977 .text {
  3099. position:absolute;
  3100. align-self:center;
  3101. padding:2px 2px 2px 2px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u156977_text {
  3106. border-width:0px;
  3107. word-wrap:break-word;
  3108. text-transform:none;
  3109. }
  3110. #u156978_div {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:375px;
  3116. height:58px;
  3117. background:inherit;
  3118. background-color:rgba(255, 255, 255, 1);
  3119. border:none;
  3120. border-top:0px;
  3121. border-radius:29px;
  3122. border-top-left-radius:0px;
  3123. border-top-right-radius:0px;
  3124. -moz-box-shadow:none;
  3125. -webkit-box-shadow:none;
  3126. box-shadow:none;
  3127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3128. font-weight:400;
  3129. font-style:normal;
  3130. }
  3131. #u156978 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:945px;
  3135. top:782px;
  3136. width:375px;
  3137. height:58px;
  3138. display:flex;
  3139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. }
  3143. #u156978 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:2px 2px 2px 2px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u156978_text {
  3151. border-width:0px;
  3152. word-wrap:break-word;
  3153. text-transform:none;
  3154. }
  3155. #u156979_img {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:20px;
  3161. height:20px;
  3162. }
  3163. #u156979 {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:1077px;
  3167. top:731px;
  3168. width:20px;
  3169. height:20px;
  3170. display:flex;
  3171. font-size:10px;
  3172. color:#FFFFFF;
  3173. }
  3174. #u156979 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 2px 2px 2px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u156979_text {
  3182. border-width:0px;
  3183. word-wrap:break-word;
  3184. text-transform:none;
  3185. }
  3186. #u156980 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:0px;
  3191. width:0px;
  3192. height:0px;
  3193. }
  3194. #u156981_div {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:312px;
  3200. height:198px;
  3201. background:inherit;
  3202. background-color:rgba(255, 255, 255, 1);
  3203. border:none;
  3204. border-radius:10px;
  3205. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3206. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3207. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:14px;
  3212. color:#FFFFFF;
  3213. }
  3214. #u156981 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:977px;
  3218. top:391px;
  3219. width:312px;
  3220. height:198px;
  3221. display:flex;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:14px;
  3226. color:#FFFFFF;
  3227. }
  3228. #u156981 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 2px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u156981_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u156982_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:73px;
  3247. height:30px;
  3248. background:inherit;
  3249. background-color:rgba(255, 255, 255, 0);
  3250. border:none;
  3251. border-left:0px;
  3252. border-top:0px;
  3253. border-right:0px;
  3254. border-radius:0px;
  3255. border-bottom-right-radius:0px;
  3256. border-bottom-left-radius:0px;
  3257. -moz-box-shadow:none;
  3258. -webkit-box-shadow:none;
  3259. box-shadow:none;
  3260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:18px;
  3264. color:#0089FE;
  3265. text-align:center;
  3266. line-height:30px;
  3267. }
  3268. #u156982 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:1096px;
  3272. top:420px;
  3273. width:73px;
  3274. height:30px;
  3275. display:flex;
  3276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3277. font-weight:400;
  3278. font-style:normal;
  3279. font-size:18px;
  3280. color:#0089FE;
  3281. text-align:center;
  3282. line-height:30px;
  3283. }
  3284. #u156982 .text {
  3285. position:absolute;
  3286. align-self:flex-start;
  3287. padding:0px 0px 0px 0px;
  3288. box-sizing:border-box;
  3289. width:100%;
  3290. }
  3291. #u156982_text {
  3292. border-width:0px;
  3293. white-space:nowrap;
  3294. text-transform:none;
  3295. }
  3296. #u156983_div {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:219px;
  3302. height:30px;
  3303. background:inherit;
  3304. background-color:rgba(255, 255, 255, 0);
  3305. border:none;
  3306. border-left:0px;
  3307. border-top:0px;
  3308. border-right:0px;
  3309. border-radius:0px;
  3310. border-bottom-right-radius:0px;
  3311. border-bottom-left-radius:0px;
  3312. -moz-box-shadow:none;
  3313. -webkit-box-shadow:none;
  3314. box-shadow:none;
  3315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. font-size:14px;
  3319. text-align:center;
  3320. line-height:30px;
  3321. }
  3322. #u156983 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:1023px;
  3326. top:475px;
  3327. width:219px;
  3328. height:30px;
  3329. display:flex;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:14px;
  3334. text-align:center;
  3335. line-height:30px;
  3336. }
  3337. #u156983 .text {
  3338. position:absolute;
  3339. align-self:flex-start;
  3340. padding:0px 0px 0px 0px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u156983_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. }
  3349. #u156984_div {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:37px;
  3355. height:30px;
  3356. background:inherit;
  3357. background-color:rgba(255, 255, 255, 0);
  3358. border:none;
  3359. border-left:0px;
  3360. border-top:0px;
  3361. border-right:0px;
  3362. border-radius:0px;
  3363. border-bottom-right-radius:0px;
  3364. border-bottom-left-radius:0px;
  3365. -moz-box-shadow:none;
  3366. -webkit-box-shadow:none;
  3367. box-shadow:none;
  3368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:18px;
  3372. color:#0089FE;
  3373. text-align:center;
  3374. line-height:30px;
  3375. }
  3376. #u156984 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:1114px;
  3380. top:547px;
  3381. width:37px;
  3382. height:30px;
  3383. display:flex;
  3384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. font-size:18px;
  3388. color:#0089FE;
  3389. text-align:center;
  3390. line-height:30px;
  3391. }
  3392. #u156984 .text {
  3393. position:absolute;
  3394. align-self:flex-start;
  3395. padding:0px 0px 0px 0px;
  3396. box-sizing:border-box;
  3397. width:100%;
  3398. }
  3399. #u156984_text {
  3400. border-width:0px;
  3401. white-space:nowrap;
  3402. text-transform:none;
  3403. }
  3404. #u156985_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:283px;
  3410. height:2px;
  3411. }
  3412. #u156985 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:992px;
  3416. top:534px;
  3417. width:282px;
  3418. height:1px;
  3419. display:flex;
  3420. }
  3421. #u156985 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 2px 2px 2px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u156985_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. visibility:hidden;
  3433. }
  3434. #u156986 {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:0px;
  3440. height:0px;
  3441. }
  3442. #u156987_div {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:0px;
  3447. width:312px;
  3448. height:198px;
  3449. background:inherit;
  3450. background-color:rgba(255, 255, 255, 1);
  3451. border:none;
  3452. border-radius:10px;
  3453. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3454. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3455. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:14px;
  3460. color:#FFFFFF;
  3461. }
  3462. #u156987 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:977px;
  3466. top:158px;
  3467. width:312px;
  3468. height:198px;
  3469. display:flex;
  3470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:14px;
  3474. color:#FFFFFF;
  3475. }
  3476. #u156987 .text {
  3477. position:absolute;
  3478. align-self:center;
  3479. padding:2px 2px 2px 2px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u156987_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. visibility:hidden;
  3488. }
  3489. #u156988_div {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:73px;
  3495. height:30px;
  3496. background:inherit;
  3497. background-color:rgba(255, 255, 255, 0);
  3498. border:none;
  3499. border-left:0px;
  3500. border-top:0px;
  3501. border-right:0px;
  3502. border-radius:0px;
  3503. border-bottom-right-radius:0px;
  3504. border-bottom-left-radius:0px;
  3505. -moz-box-shadow:none;
  3506. -webkit-box-shadow:none;
  3507. box-shadow:none;
  3508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:18px;
  3512. color:#0089FE;
  3513. text-align:center;
  3514. line-height:30px;
  3515. }
  3516. #u156988 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:1096px;
  3520. top:187px;
  3521. width:73px;
  3522. height:30px;
  3523. display:flex;
  3524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3525. font-weight:400;
  3526. font-style:normal;
  3527. font-size:18px;
  3528. color:#0089FE;
  3529. text-align:center;
  3530. line-height:30px;
  3531. }
  3532. #u156988 .text {
  3533. position:absolute;
  3534. align-self:flex-start;
  3535. padding:0px 0px 0px 0px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u156988_text {
  3540. border-width:0px;
  3541. white-space:nowrap;
  3542. text-transform:none;
  3543. }
  3544. #u156989_div {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:219px;
  3550. height:40px;
  3551. background:inherit;
  3552. background-color:rgba(255, 255, 255, 0);
  3553. border:none;
  3554. border-left:0px;
  3555. border-top:0px;
  3556. border-right:0px;
  3557. border-radius:0px;
  3558. border-bottom-right-radius:0px;
  3559. border-bottom-left-radius:0px;
  3560. -moz-box-shadow:none;
  3561. -webkit-box-shadow:none;
  3562. box-shadow:none;
  3563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3564. font-weight:400;
  3565. font-style:normal;
  3566. font-size:14px;
  3567. text-align:center;
  3568. }
  3569. #u156989 {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:1023px;
  3573. top:242px;
  3574. width:219px;
  3575. height:40px;
  3576. display:flex;
  3577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3578. font-weight:400;
  3579. font-style:normal;
  3580. font-size:14px;
  3581. text-align:center;
  3582. }
  3583. #u156989 .text {
  3584. position:absolute;
  3585. align-self:flex-start;
  3586. padding:0px 0px 0px 0px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u156989_text {
  3591. border-width:0px;
  3592. word-wrap:break-word;
  3593. text-transform:none;
  3594. }
  3595. #u156990_div {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:37px;
  3601. height:30px;
  3602. background:inherit;
  3603. background-color:rgba(255, 255, 255, 0);
  3604. border:none;
  3605. border-left:0px;
  3606. border-top:0px;
  3607. border-right:0px;
  3608. border-radius:0px;
  3609. border-bottom-right-radius:0px;
  3610. border-bottom-left-radius:0px;
  3611. -moz-box-shadow:none;
  3612. -webkit-box-shadow:none;
  3613. box-shadow:none;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:18px;
  3618. color:#0089FE;
  3619. text-align:center;
  3620. line-height:30px;
  3621. }
  3622. #u156990 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:1114px;
  3626. top:314px;
  3627. width:37px;
  3628. height:30px;
  3629. display:flex;
  3630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3631. font-weight:400;
  3632. font-style:normal;
  3633. font-size:18px;
  3634. color:#0089FE;
  3635. text-align:center;
  3636. line-height:30px;
  3637. }
  3638. #u156990 .text {
  3639. position:absolute;
  3640. align-self:flex-start;
  3641. padding:0px 0px 0px 0px;
  3642. box-sizing:border-box;
  3643. width:100%;
  3644. }
  3645. #u156990_text {
  3646. border-width:0px;
  3647. white-space:nowrap;
  3648. text-transform:none;
  3649. }
  3650. #u156991_img {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:283px;
  3656. height:2px;
  3657. }
  3658. #u156991 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:992px;
  3662. top:301px;
  3663. width:282px;
  3664. height:1px;
  3665. display:flex;
  3666. }
  3667. #u156991 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:2px 2px 2px 2px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u156991_text {
  3675. border-width:0px;
  3676. word-wrap:break-word;
  3677. text-transform:none;
  3678. visibility:hidden;
  3679. }
  3680. #u156992_div {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:375px;
  3686. height:60px;
  3687. background:inherit;
  3688. background-color:rgba(255, 255, 255, 1);
  3689. box-sizing:border-box;
  3690. border-width:1px;
  3691. border-style:solid;
  3692. border-color:rgba(242, 242, 242, 1);
  3693. border-radius:4px;
  3694. -moz-box-shadow:none;
  3695. -webkit-box-shadow:none;
  3696. box-shadow:none;
  3697. }
  3698. #u156992 {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:29px;
  3702. top:106px;
  3703. width:375px;
  3704. height:60px;
  3705. display:flex;
  3706. }
  3707. #u156992 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 2px 2px 2px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u156992_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u156993_div {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:57px;
  3726. height:30px;
  3727. background:inherit;
  3728. background-color:rgba(255, 255, 255, 0);
  3729. border:none;
  3730. border-left:0px;
  3731. border-top:0px;
  3732. border-right:0px;
  3733. border-radius:0px;
  3734. border-bottom-right-radius:0px;
  3735. border-bottom-left-radius:0px;
  3736. -moz-box-shadow:none;
  3737. -webkit-box-shadow:none;
  3738. box-shadow:none;
  3739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3740. font-weight:400;
  3741. font-style:normal;
  3742. font-size:14px;
  3743. line-height:30px;
  3744. }
  3745. #u156993 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:46px;
  3749. top:121px;
  3750. width:57px;
  3751. height:30px;
  3752. display:flex;
  3753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:14px;
  3757. line-height:30px;
  3758. }
  3759. #u156993 .text {
  3760. position:absolute;
  3761. align-self:flex-start;
  3762. padding:0px 0px 0px 0px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u156993_text {
  3767. border-width:0px;
  3768. white-space:nowrap;
  3769. text-transform:none;
  3770. }
  3771. #u156994_div {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:162px;
  3777. height:30px;
  3778. background:inherit;
  3779. background-color:rgba(255, 255, 255, 0);
  3780. border:none;
  3781. border-left:0px;
  3782. border-top:0px;
  3783. border-right:0px;
  3784. border-radius:0px;
  3785. border-bottom-right-radius:0px;
  3786. border-bottom-left-radius:0px;
  3787. -moz-box-shadow:none;
  3788. -webkit-box-shadow:none;
  3789. box-shadow:none;
  3790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3791. font-weight:400;
  3792. font-style:normal;
  3793. font-size:14px;
  3794. text-align:right;
  3795. line-height:30px;
  3796. }
  3797. #u156994 {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:212px;
  3801. top:121px;
  3802. width:162px;
  3803. height:30px;
  3804. display:flex;
  3805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3806. font-weight:400;
  3807. font-style:normal;
  3808. font-size:14px;
  3809. text-align:right;
  3810. line-height:30px;
  3811. }
  3812. #u156994 .text {
  3813. position:absolute;
  3814. align-self:flex-start;
  3815. padding:0px 0px 0px 0px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u156994_text {
  3820. border-width:0px;
  3821. white-space:nowrap;
  3822. text-transform:none;
  3823. }
  3824. #u156995 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:0px;
  3830. height:0px;
  3831. }
  3832. #u156996_img {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:0px;
  3836. top:0px;
  3837. width:8px;
  3838. height:13px;
  3839. }
  3840. #u156996 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:384px;
  3844. top:130px;
  3845. width:8px;
  3846. height:13px;
  3847. display:flex;
  3848. -webkit-transform:rotate(180deg);
  3849. -moz-transform:rotate(180deg);
  3850. -ms-transform:rotate(180deg);
  3851. transform:rotate(180deg);
  3852. }
  3853. #u156996 .text {
  3854. position:absolute;
  3855. align-self:center;
  3856. padding:2px 2px 2px 2px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u156996_text {
  3861. border-width:0px;
  3862. word-wrap:break-word;
  3863. text-transform:none;
  3864. visibility:hidden;
  3865. }
  3866. #u156997_div {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:375px;
  3872. height:60px;
  3873. background:inherit;
  3874. background-color:rgba(255, 255, 255, 1);
  3875. box-sizing:border-box;
  3876. border-width:1px;
  3877. border-style:solid;
  3878. border-color:rgba(242, 242, 242, 1);
  3879. border-radius:4px;
  3880. -moz-box-shadow:none;
  3881. -webkit-box-shadow:none;
  3882. box-shadow:none;
  3883. }
  3884. #u156997 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:482px;
  3888. top:106px;
  3889. width:375px;
  3890. height:60px;
  3891. display:flex;
  3892. }
  3893. #u156997 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:2px 2px 2px 2px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u156997_text {
  3901. border-width:0px;
  3902. word-wrap:break-word;
  3903. text-transform:none;
  3904. visibility:hidden;
  3905. }
  3906. #u156998_div {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:57px;
  3912. height:30px;
  3913. background:inherit;
  3914. background-color:rgba(255, 255, 255, 0);
  3915. border:none;
  3916. border-left:0px;
  3917. border-top:0px;
  3918. border-right:0px;
  3919. border-radius:0px;
  3920. border-bottom-right-radius:0px;
  3921. border-bottom-left-radius:0px;
  3922. -moz-box-shadow:none;
  3923. -webkit-box-shadow:none;
  3924. box-shadow:none;
  3925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3926. font-weight:400;
  3927. font-style:normal;
  3928. font-size:14px;
  3929. line-height:30px;
  3930. }
  3931. #u156998 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:499px;
  3935. top:121px;
  3936. width:57px;
  3937. height:30px;
  3938. display:flex;
  3939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:14px;
  3943. line-height:30px;
  3944. }
  3945. #u156998 .text {
  3946. position:absolute;
  3947. align-self:flex-start;
  3948. padding:0px 0px 0px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u156998_text {
  3953. border-width:0px;
  3954. white-space:nowrap;
  3955. text-transform:none;
  3956. }
  3957. #u156999_div {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:148px;
  3963. height:30px;
  3964. background:inherit;
  3965. background-color:rgba(255, 255, 255, 0);
  3966. border:none;
  3967. border-left:0px;
  3968. border-top:0px;
  3969. border-right:0px;
  3970. border-radius:0px;
  3971. border-bottom-right-radius:0px;
  3972. border-bottom-left-radius:0px;
  3973. -moz-box-shadow:none;
  3974. -webkit-box-shadow:none;
  3975. box-shadow:none;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:14px;
  3980. text-align:right;
  3981. line-height:30px;
  3982. }
  3983. #u156999 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:679px;
  3987. top:121px;
  3988. width:148px;
  3989. height:30px;
  3990. display:flex;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:14px;
  3995. text-align:right;
  3996. line-height:30px;
  3997. }
  3998. #u156999 .text {
  3999. position:absolute;
  4000. align-self:flex-start;
  4001. padding:0px 0px 0px 0px;
  4002. box-sizing:border-box;
  4003. width:100%;
  4004. }
  4005. #u156999_text {
  4006. border-width:0px;
  4007. white-space:nowrap;
  4008. text-transform:none;
  4009. }
  4010. #u157000 {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:0px;
  4016. height:0px;
  4017. }
  4018. #u157001_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:8px;
  4024. height:13px;
  4025. }
  4026. #u157001 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:837px;
  4030. top:130px;
  4031. width:8px;
  4032. height:13px;
  4033. display:flex;
  4034. -webkit-transform:rotate(180deg);
  4035. -moz-transform:rotate(180deg);
  4036. -ms-transform:rotate(180deg);
  4037. transform:rotate(180deg);
  4038. }
  4039. #u157001 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:2px 2px 2px 2px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u157001_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. visibility:hidden;
  4051. }
  4052. #u157002 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:0px;
  4058. height:0px;
  4059. }
  4060. #u157003_div {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:302px;
  4066. height:25px;
  4067. background:inherit;
  4068. background-color:rgba(51, 51, 51, 1);
  4069. border:none;
  4070. border-radius:21px;
  4071. -moz-box-shadow:none;
  4072. -webkit-box-shadow:none;
  4073. box-shadow:none;
  4074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:12px;
  4078. color:#FFFFFF;
  4079. text-align:center;
  4080. }
  4081. #u157003 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:543px;
  4085. top:728px;
  4086. width:302px;
  4087. height:25px;
  4088. display:flex;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:12px;
  4093. color:#FFFFFF;
  4094. text-align:center;
  4095. }
  4096. #u157003 .text {
  4097. position:absolute;
  4098. align-self:center;
  4099. padding:0px 0px 0px 0px;
  4100. box-sizing:border-box;
  4101. width:100%;
  4102. }
  4103. #u157003_text {
  4104. border-width:0px;
  4105. word-wrap:break-word;
  4106. text-transform:none;
  4107. }
  4108. #u157004_img {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:14px;
  4114. height:6px;
  4115. }
  4116. #u157004 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:800px;
  4120. top:751px;
  4121. width:14px;
  4122. height:6px;
  4123. display:flex;
  4124. }
  4125. #u157004 .text {
  4126. position:absolute;
  4127. align-self:center;
  4128. padding:2px 2px 2px 2px;
  4129. box-sizing:border-box;
  4130. width:100%;
  4131. }
  4132. #u157004_text {
  4133. border-width:0px;
  4134. word-wrap:break-word;
  4135. text-transform:none;
  4136. visibility:hidden;
  4137. }