styles.css 73 KB

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