styles.css 66 KB

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