styles.css 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1339px;
  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. #u13437_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u13437 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u13437 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u13437_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u13438_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. #u13438 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u13438 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u13438_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u13439 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u13440_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. #u13440 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u13440 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u13440_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u13441 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u13442_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u13442 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u13442 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u13442_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u13443_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u13443 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u13443 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u13443_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u13444 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u13445_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u13445 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u13445 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u13445_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u13446_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u13446 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u13446 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u13446_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u13447_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u13447 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u13447 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u13447_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u13448_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u13448 {
  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. #u13448 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u13448_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u13449_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u13449 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u13449 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u13449_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u13450_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. #u13450 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u13450 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u13450_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u13451 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u13452_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u13452 {
  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. #u13452 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u13452_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u13453_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. #u13453 {
  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. #u13453 .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. #u13453_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u13454 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u13455_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u13455 {
  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. #u13455 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u13455_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u13456_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. #u13456 {
  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. #u13456 .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. #u13456_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u13457_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. #u13457 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u13457 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u13457_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u13458 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u13459_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u13459 {
  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. #u13459 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u13459_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u13460_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. #u13460 {
  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. #u13460 .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. #u13460_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u13461 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u13462_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u13462 {
  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. #u13462 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u13462_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u13463_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. #u13463 {
  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. #u13463 .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. #u13463_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u13464 {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:0px;
  785. height:0px;
  786. }
  787. #u13465_div {
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:375px;
  793. height:50px;
  794. background:inherit;
  795. background-color:rgba(255, 255, 255, 1);
  796. box-sizing:border-box;
  797. border-width:1px;
  798. border-style:solid;
  799. border-color:rgba(242, 242, 242, 1);
  800. border-radius:26px;
  801. border-top-left-radius:0px;
  802. border-top-right-radius:0px;
  803. -moz-box-shadow:none;
  804. -webkit-box-shadow:none;
  805. box-shadow:none;
  806. }
  807. #u13465 {
  808. border-width:0px;
  809. position:absolute;
  810. left:29px;
  811. top:788px;
  812. width:375px;
  813. height:50px;
  814. display:flex;
  815. }
  816. #u13465 .text {
  817. position:absolute;
  818. align-self:center;
  819. padding:2px 2px 2px 2px;
  820. box-sizing:border-box;
  821. width:100%;
  822. }
  823. #u13465_text {
  824. border-width:0px;
  825. word-wrap:break-word;
  826. text-transform:none;
  827. visibility:hidden;
  828. }
  829. #u13466 {
  830. border-width:0px;
  831. position:absolute;
  832. left:0px;
  833. top:0px;
  834. width:0px;
  835. height:0px;
  836. }
  837. #u13467_img {
  838. border-width:0px;
  839. position:absolute;
  840. left:0px;
  841. top:0px;
  842. width:24px;
  843. height:24px;
  844. }
  845. #u13467 {
  846. border-width:0px;
  847. position:absolute;
  848. left:339px;
  849. top:794px;
  850. width:24px;
  851. height:24px;
  852. display:flex;
  853. font-size:8px;
  854. }
  855. #u13467 .text {
  856. position:absolute;
  857. align-self:center;
  858. padding:2px 2px 2px 2px;
  859. box-sizing:border-box;
  860. width:100%;
  861. }
  862. #u13467_text {
  863. border-width:0px;
  864. word-wrap:break-word;
  865. text-transform:none;
  866. }
  867. #u13468_div {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:25px;
  873. height:17px;
  874. background:inherit;
  875. background-color:rgba(255, 255, 255, 0);
  876. border:none;
  877. border-radius:0px;
  878. -moz-box-shadow:none;
  879. -webkit-box-shadow:none;
  880. box-shadow:none;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:12px;
  885. }
  886. #u13468 {
  887. border-width:0px;
  888. position:absolute;
  889. left:339px;
  890. top:819px;
  891. width:25px;
  892. height:17px;
  893. display:flex;
  894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  895. font-weight:400;
  896. font-style:normal;
  897. font-size:12px;
  898. }
  899. #u13468 .text {
  900. position:absolute;
  901. align-self:flex-start;
  902. padding:0px 0px 0px 0px;
  903. box-sizing:border-box;
  904. width:100%;
  905. }
  906. #u13468_text {
  907. border-width:0px;
  908. white-space:nowrap;
  909. text-transform:none;
  910. }
  911. #u13469 {
  912. border-width:0px;
  913. position:absolute;
  914. left:0px;
  915. top:0px;
  916. width:0px;
  917. height:0px;
  918. }
  919. #u13470_img {
  920. border-width:0px;
  921. position:absolute;
  922. left:0px;
  923. top:0px;
  924. width:24px;
  925. height:24px;
  926. }
  927. #u13470 {
  928. border-width:0px;
  929. position:absolute;
  930. left:247px;
  931. top:792px;
  932. width:24px;
  933. height:24px;
  934. display:flex;
  935. font-size:8px;
  936. }
  937. #u13470 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u13470_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. }
  949. #u13471_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:49px;
  955. height:17px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 0);
  958. border:none;
  959. border-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  964. font-weight:400;
  965. font-style:normal;
  966. font-size:12px;
  967. }
  968. #u13471 {
  969. border-width:0px;
  970. position:absolute;
  971. left:233px;
  972. top:817px;
  973. width:49px;
  974. height:17px;
  975. display:flex;
  976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  977. font-weight:400;
  978. font-style:normal;
  979. font-size:12px;
  980. }
  981. #u13471 .text {
  982. position:absolute;
  983. align-self:flex-start;
  984. padding:0px 0px 0px 0px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u13471_text {
  989. border-width:0px;
  990. white-space:nowrap;
  991. text-transform:none;
  992. }
  993. #u13472 {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:0px;
  999. height:0px;
  1000. }
  1001. #u13473_img {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:24px;
  1007. height:24px;
  1008. }
  1009. #u13473 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:69px;
  1013. top:792px;
  1014. width:24px;
  1015. height:24px;
  1016. display:flex;
  1017. font-size:8px;
  1018. color:#FFFFFF;
  1019. }
  1020. #u13473 .text {
  1021. position:absolute;
  1022. align-self:center;
  1023. padding:2px 2px 2px 2px;
  1024. box-sizing:border-box;
  1025. width:100%;
  1026. }
  1027. #u13473_text {
  1028. border-width:0px;
  1029. word-wrap:break-word;
  1030. text-transform:none;
  1031. }
  1032. #u13474_div {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:25px;
  1038. height:17px;
  1039. background:inherit;
  1040. background-color:rgba(255, 255, 255, 0);
  1041. border:none;
  1042. border-radius:0px;
  1043. -moz-box-shadow:none;
  1044. -webkit-box-shadow:none;
  1045. box-shadow:none;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. font-size:12px;
  1050. }
  1051. #u13474 {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:69px;
  1055. top:817px;
  1056. width:25px;
  1057. height:17px;
  1058. display:flex;
  1059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1060. font-weight:400;
  1061. font-style:normal;
  1062. font-size:12px;
  1063. }
  1064. #u13474 .text {
  1065. position:absolute;
  1066. align-self:flex-start;
  1067. padding:0px 0px 0px 0px;
  1068. box-sizing:border-box;
  1069. width:100%;
  1070. }
  1071. #u13474_text {
  1072. border-width:0px;
  1073. white-space:nowrap;
  1074. text-transform:none;
  1075. }
  1076. #u13475 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:0px;
  1080. top:0px;
  1081. width:0px;
  1082. height:0px;
  1083. }
  1084. #u13476_img {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:0px;
  1088. top:0px;
  1089. width:24px;
  1090. height:24px;
  1091. }
  1092. #u13476 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:155px;
  1096. top:792px;
  1097. width:24px;
  1098. height:24px;
  1099. display:flex;
  1100. font-size:8px;
  1101. }
  1102. #u13476 .text {
  1103. position:absolute;
  1104. align-self:center;
  1105. padding:2px 2px 2px 2px;
  1106. box-sizing:border-box;
  1107. width:100%;
  1108. }
  1109. #u13476_text {
  1110. border-width:0px;
  1111. word-wrap:break-word;
  1112. text-transform:none;
  1113. }
  1114. #u13477_div {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:0px;
  1118. top:0px;
  1119. width:25px;
  1120. height:17px;
  1121. background:inherit;
  1122. background-color:rgba(255, 255, 255, 0);
  1123. border:none;
  1124. border-radius:0px;
  1125. -moz-box-shadow:none;
  1126. -webkit-box-shadow:none;
  1127. box-shadow:none;
  1128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1129. font-weight:400;
  1130. font-style:normal;
  1131. font-size:12px;
  1132. }
  1133. #u13477 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:155px;
  1137. top:817px;
  1138. width:25px;
  1139. height:17px;
  1140. display:flex;
  1141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1142. font-weight:400;
  1143. font-style:normal;
  1144. font-size:12px;
  1145. }
  1146. #u13477 .text {
  1147. position:absolute;
  1148. align-self:flex-start;
  1149. padding:0px 0px 0px 0px;
  1150. box-sizing:border-box;
  1151. width:100%;
  1152. }
  1153. #u13477_text {
  1154. border-width:0px;
  1155. white-space:nowrap;
  1156. text-transform:none;
  1157. }
  1158. #u13478_div {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:0px;
  1162. top:0px;
  1163. width:85px;
  1164. height:30px;
  1165. background:inherit;
  1166. background-color:rgba(255, 255, 255, 0);
  1167. border:none;
  1168. border-left:0px;
  1169. border-top:0px;
  1170. border-right:0px;
  1171. border-radius:0px;
  1172. border-bottom-right-radius:0px;
  1173. border-bottom-left-radius:0px;
  1174. -moz-box-shadow:none;
  1175. -webkit-box-shadow:none;
  1176. box-shadow:none;
  1177. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1178. font-weight:500;
  1179. font-style:normal;
  1180. font-size:14px;
  1181. line-height:30px;
  1182. }
  1183. #u13478 {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:174px;
  1187. top:76px;
  1188. width:85px;
  1189. height:30px;
  1190. display:flex;
  1191. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1192. font-weight:500;
  1193. font-style:normal;
  1194. font-size:14px;
  1195. line-height:30px;
  1196. }
  1197. #u13478 .text {
  1198. position:absolute;
  1199. align-self:flex-start;
  1200. padding:0px 0px 0px 0px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u13478_text {
  1205. border-width:0px;
  1206. white-space:nowrap;
  1207. text-transform:none;
  1208. }
  1209. #u13479_img {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:0px;
  1213. top:0px;
  1214. width:375px;
  1215. height:811px;
  1216. }
  1217. #u13479 {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:29px;
  1221. top:27px;
  1222. width:375px;
  1223. height:811px;
  1224. display:flex;
  1225. }
  1226. #u13479 .text {
  1227. position:absolute;
  1228. align-self:center;
  1229. padding:2px 2px 2px 2px;
  1230. box-sizing:border-box;
  1231. width:100%;
  1232. }
  1233. #u13479_text {
  1234. border-width:0px;
  1235. word-wrap:break-word;
  1236. text-transform:none;
  1237. visibility:hidden;
  1238. }
  1239. #u13480 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:0px;
  1243. top:0px;
  1244. width:0px;
  1245. height:0px;
  1246. }
  1247. #u13481_div {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:0px;
  1251. top:0px;
  1252. width:375px;
  1253. height:30px;
  1254. background:inherit;
  1255. background-color:rgba(245, 154, 35, 1);
  1256. box-sizing:border-box;
  1257. border-width:1px;
  1258. border-style:solid;
  1259. border-color:rgba(242, 242, 242, 1);
  1260. border-left:0px;
  1261. border-top:0px;
  1262. border-bottom:0px;
  1263. border-radius:0px;
  1264. border-top-right-radius:0px;
  1265. border-bottom-right-radius:0px;
  1266. -moz-box-shadow:none;
  1267. -webkit-box-shadow:none;
  1268. box-shadow:none;
  1269. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1270. font-weight:500;
  1271. font-style:normal;
  1272. font-size:12px;
  1273. }
  1274. #u13481 {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:29px;
  1278. top:106px;
  1279. width:375px;
  1280. height:30px;
  1281. display:flex;
  1282. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1283. font-weight:500;
  1284. font-style:normal;
  1285. font-size:12px;
  1286. }
  1287. #u13481 .text {
  1288. position:absolute;
  1289. align-self:center;
  1290. padding:0px 2px 0px 10px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u13481_text {
  1295. border-width:0px;
  1296. word-wrap:break-word;
  1297. text-transform:none;
  1298. visibility:hidden;
  1299. }
  1300. #u13482_img {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:14px;
  1306. height:15px;
  1307. }
  1308. #u13482 {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:40px;
  1312. top:114px;
  1313. width:14px;
  1314. height:15px;
  1315. display:flex;
  1316. }
  1317. #u13482 .text {
  1318. position:absolute;
  1319. align-self:center;
  1320. padding:2px 2px 2px 2px;
  1321. box-sizing:border-box;
  1322. width:100%;
  1323. }
  1324. #u13482_text {
  1325. border-width:0px;
  1326. word-wrap:break-word;
  1327. text-transform:none;
  1328. visibility:hidden;
  1329. }
  1330. #u13483 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:64px;
  1334. top:113px;
  1335. width:334px;
  1336. height:34px;
  1337. }
  1338. #u13483_state0 {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:0px;
  1342. top:0px;
  1343. width:334px;
  1344. height:34px;
  1345. overflow:auto;
  1346. -webkit-overflow-scrolling:touch;
  1347. -ms-overflow-y:hidden;
  1348. overflow-y:hidden;
  1349. background-image:none;
  1350. border:none;
  1351. border-radius:0px;
  1352. -moz-box-shadow:none;
  1353. -webkit-box-shadow:none;
  1354. box-shadow:none;
  1355. }
  1356. #u13483_state0_content {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:1px;
  1362. height:1px;
  1363. }
  1364. #u13484_div {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:577px;
  1370. height:17px;
  1371. background:inherit;
  1372. background-color:rgba(255, 255, 255, 0);
  1373. border:none;
  1374. border-radius:0px;
  1375. -moz-box-shadow:none;
  1376. -webkit-box-shadow:none;
  1377. box-shadow:none;
  1378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1379. font-weight:400;
  1380. font-style:normal;
  1381. font-size:12px;
  1382. }
  1383. #u13484 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:577px;
  1389. height:17px;
  1390. display:flex;
  1391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1392. font-weight:400;
  1393. font-style:normal;
  1394. font-size:12px;
  1395. }
  1396. #u13484 .text {
  1397. position:absolute;
  1398. align-self:flex-start;
  1399. padding:0px 0px 0px 0px;
  1400. box-sizing:border-box;
  1401. width:100%;
  1402. }
  1403. #u13484_text {
  1404. border-width:0px;
  1405. white-space:nowrap;
  1406. text-transform:none;
  1407. }
  1408. #u13486_img {
  1409. border-width:0px;
  1410. position:absolute;
  1411. left:0px;
  1412. top:0px;
  1413. width:433px;
  1414. height:865px;
  1415. }
  1416. #u13486 {
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:906px;
  1420. top:0px;
  1421. width:433px;
  1422. height:865px;
  1423. display:flex;
  1424. }
  1425. #u13486 .text {
  1426. position:absolute;
  1427. align-self:center;
  1428. padding:2px 2px 2px 2px;
  1429. box-sizing:border-box;
  1430. width:100%;
  1431. }
  1432. #u13486_text {
  1433. border-width:0px;
  1434. word-wrap:break-word;
  1435. text-transform:none;
  1436. visibility:hidden;
  1437. }
  1438. #u13487_div {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:375px;
  1444. height:40px;
  1445. background:inherit;
  1446. background-color:rgba(255, 255, 255, 1);
  1447. box-sizing:border-box;
  1448. border-width:1px;
  1449. border-style:solid;
  1450. border-color:rgba(215, 215, 215, 1);
  1451. border-left:0px;
  1452. border-top:0px;
  1453. border-right:0px;
  1454. border-radius:0px;
  1455. border-bottom-right-radius:0px;
  1456. border-bottom-left-radius:0px;
  1457. -moz-box-shadow:none;
  1458. -webkit-box-shadow:none;
  1459. box-shadow:none;
  1460. }
  1461. #u13487 {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:935px;
  1465. top:67px;
  1466. width:375px;
  1467. height:40px;
  1468. display:flex;
  1469. }
  1470. #u13487 .text {
  1471. position:absolute;
  1472. align-self:center;
  1473. padding:2px 2px 2px 2px;
  1474. box-sizing:border-box;
  1475. width:100%;
  1476. }
  1477. #u13487_text {
  1478. border-width:0px;
  1479. word-wrap:break-word;
  1480. text-transform:none;
  1481. visibility:hidden;
  1482. }
  1483. #u13488 {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:0px;
  1487. top:0px;
  1488. width:0px;
  1489. height:0px;
  1490. }
  1491. #u13489_div {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:0px;
  1495. top:0px;
  1496. width:88px;
  1497. height:32px;
  1498. background:inherit;
  1499. background-color:rgba(255, 255, 255, 1);
  1500. box-sizing:border-box;
  1501. border-width:1px;
  1502. border-style:solid;
  1503. border-color:rgba(242, 242, 242, 1);
  1504. border-radius:33px;
  1505. -moz-box-shadow:none;
  1506. -webkit-box-shadow:none;
  1507. box-shadow:none;
  1508. }
  1509. #u13489 {
  1510. border-width:0px;
  1511. position:absolute;
  1512. left:1215px;
  1513. top:71px;
  1514. width:88px;
  1515. height:32px;
  1516. display:flex;
  1517. }
  1518. #u13489 .text {
  1519. position:absolute;
  1520. align-self:center;
  1521. padding:2px 2px 2px 2px;
  1522. box-sizing:border-box;
  1523. width:100%;
  1524. }
  1525. #u13489_text {
  1526. border-width:0px;
  1527. word-wrap:break-word;
  1528. text-transform:none;
  1529. visibility:hidden;
  1530. }
  1531. #u13490 {
  1532. border-width:0px;
  1533. position:absolute;
  1534. left:0px;
  1535. top:0px;
  1536. width:0px;
  1537. height:0px;
  1538. }
  1539. #u13491_img {
  1540. border-width:0px;
  1541. position:absolute;
  1542. left:0px;
  1543. top:0px;
  1544. width:18px;
  1545. height:18px;
  1546. }
  1547. #u13491 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:1278px;
  1551. top:78px;
  1552. width:18px;
  1553. height:18px;
  1554. display:flex;
  1555. }
  1556. #u13491 .text {
  1557. position:absolute;
  1558. align-self:center;
  1559. padding:2px 2px 2px 2px;
  1560. box-sizing:border-box;
  1561. width:100%;
  1562. }
  1563. #u13491_text {
  1564. border-width:0px;
  1565. word-wrap:break-word;
  1566. text-transform:none;
  1567. visibility:hidden;
  1568. }
  1569. #u13492_img {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:0px;
  1573. top:0px;
  1574. width:6px;
  1575. height:6px;
  1576. }
  1577. #u13492 {
  1578. border-width:0px;
  1579. position:absolute;
  1580. left:1284px;
  1581. top:84px;
  1582. width:6px;
  1583. height:6px;
  1584. display:flex;
  1585. }
  1586. #u13492 .text {
  1587. position:absolute;
  1588. align-self:center;
  1589. padding:2px 2px 2px 2px;
  1590. box-sizing:border-box;
  1591. width:100%;
  1592. }
  1593. #u13492_text {
  1594. border-width:0px;
  1595. word-wrap:break-word;
  1596. text-transform:none;
  1597. visibility:hidden;
  1598. }
  1599. #u13493 {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:0px;
  1603. top:0px;
  1604. width:0px;
  1605. height:0px;
  1606. }
  1607. #u13494_img {
  1608. border-width:0px;
  1609. position:absolute;
  1610. left:0px;
  1611. top:0px;
  1612. width:5px;
  1613. height:5px;
  1614. }
  1615. #u13494 {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:1229px;
  1619. top:85px;
  1620. width:5px;
  1621. height:5px;
  1622. display:flex;
  1623. }
  1624. #u13494 .text {
  1625. position:absolute;
  1626. align-self:center;
  1627. padding:2px 2px 2px 2px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u13494_text {
  1632. border-width:0px;
  1633. word-wrap:break-word;
  1634. text-transform:none;
  1635. visibility:hidden;
  1636. }
  1637. #u13495_img {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:0px;
  1641. top:0px;
  1642. width:5px;
  1643. height:5px;
  1644. }
  1645. #u13495 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:1245px;
  1649. top:85px;
  1650. width:5px;
  1651. height:5px;
  1652. display:flex;
  1653. }
  1654. #u13495 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u13495_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u13496_img {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:7px;
  1673. height:7px;
  1674. }
  1675. #u13496 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:1236px;
  1679. top:84px;
  1680. width:7px;
  1681. height:7px;
  1682. display:flex;
  1683. }
  1684. #u13496 .text {
  1685. position:absolute;
  1686. align-self:center;
  1687. padding:2px 2px 2px 2px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u13496_text {
  1692. border-width:0px;
  1693. word-wrap:break-word;
  1694. text-transform:none;
  1695. visibility:hidden;
  1696. }
  1697. #u13497_img {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:19px;
  1703. height:2px;
  1704. }
  1705. #u13497 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:1253px;
  1709. top:87px;
  1710. width:18px;
  1711. height:1px;
  1712. display:flex;
  1713. -webkit-transform:rotate(90deg);
  1714. -moz-transform:rotate(90deg);
  1715. -ms-transform:rotate(90deg);
  1716. transform:rotate(90deg);
  1717. }
  1718. #u13497 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:2px 2px 2px 2px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u13497_text {
  1726. border-width:0px;
  1727. word-wrap:break-word;
  1728. text-transform:none;
  1729. visibility:hidden;
  1730. }
  1731. #u13498_img {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:375px;
  1737. height:44px;
  1738. }
  1739. #u13498 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:935px;
  1743. top:24px;
  1744. width:375px;
  1745. height:44px;
  1746. display:flex;
  1747. }
  1748. #u13498 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:2px 2px 2px 2px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u13498_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. visibility:hidden;
  1760. }
  1761. #u13499_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:375px;
  1767. height:50px;
  1768. background:inherit;
  1769. background-color:rgba(255, 255, 255, 1);
  1770. box-sizing:border-box;
  1771. border-width:1px;
  1772. border-style:solid;
  1773. border-color:rgba(242, 242, 242, 1);
  1774. border-radius:26px;
  1775. border-top-left-radius:0px;
  1776. border-top-right-radius:0px;
  1777. -moz-box-shadow:none;
  1778. -webkit-box-shadow:none;
  1779. box-shadow:none;
  1780. }
  1781. #u13499 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:935px;
  1785. top:788px;
  1786. width:375px;
  1787. height:50px;
  1788. display:flex;
  1789. }
  1790. #u13499 .text {
  1791. position:absolute;
  1792. align-self:center;
  1793. padding:2px 2px 2px 2px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u13499_text {
  1798. border-width:0px;
  1799. word-wrap:break-word;
  1800. text-transform:none;
  1801. visibility:hidden;
  1802. }
  1803. #u13500 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:0px;
  1809. height:0px;
  1810. }
  1811. #u13501_img {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:24px;
  1817. height:24px;
  1818. }
  1819. #u13501 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:975px;
  1823. top:792px;
  1824. width:24px;
  1825. height:24px;
  1826. display:flex;
  1827. font-size:8px;
  1828. }
  1829. #u13501 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:2px 2px 2px 2px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u13501_text {
  1837. border-width:0px;
  1838. word-wrap:break-word;
  1839. text-transform:none;
  1840. }
  1841. #u13502_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:25px;
  1847. height:17px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 0);
  1850. border:none;
  1851. border-radius:0px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:12px;
  1859. }
  1860. #u13502 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:975px;
  1864. top:817px;
  1865. width:25px;
  1866. height:17px;
  1867. display:flex;
  1868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1869. font-weight:400;
  1870. font-style:normal;
  1871. font-size:12px;
  1872. }
  1873. #u13502 .text {
  1874. position:absolute;
  1875. align-self:flex-start;
  1876. padding:0px 0px 0px 0px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u13502_text {
  1881. border-width:0px;
  1882. white-space:nowrap;
  1883. text-transform:none;
  1884. }
  1885. #u13503 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:0px;
  1891. height:0px;
  1892. }
  1893. #u13504_img {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:24px;
  1899. height:24px;
  1900. }
  1901. #u13504 {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:1245px;
  1905. top:794px;
  1906. width:24px;
  1907. height:24px;
  1908. display:flex;
  1909. font-size:8px;
  1910. }
  1911. #u13504 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 2px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u13504_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. }
  1923. #u13505_div {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:25px;
  1929. height:17px;
  1930. background:inherit;
  1931. background-color:rgba(255, 255, 255, 0);
  1932. border:none;
  1933. border-radius:0px;
  1934. -moz-box-shadow:none;
  1935. -webkit-box-shadow:none;
  1936. box-shadow:none;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. }
  1942. #u13505 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:1245px;
  1946. top:819px;
  1947. width:25px;
  1948. height:17px;
  1949. display:flex;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:12px;
  1954. }
  1955. #u13505 .text {
  1956. position:absolute;
  1957. align-self:flex-start;
  1958. padding:0px 0px 0px 0px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u13505_text {
  1963. border-width:0px;
  1964. white-space:nowrap;
  1965. text-transform:none;
  1966. }
  1967. #u13506_div {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:375px;
  1973. height:681px;
  1974. background:inherit;
  1975. background-color:rgba(242, 242, 242, 0.462745098039216);
  1976. border:none;
  1977. border-radius:0px;
  1978. -moz-box-shadow:none;
  1979. -webkit-box-shadow:none;
  1980. box-shadow:none;
  1981. }
  1982. #u13506 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:935px;
  1986. top:107px;
  1987. width:375px;
  1988. height:681px;
  1989. display:flex;
  1990. }
  1991. #u13506 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 2px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u13506_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. visibility:hidden;
  2003. }
  2004. #u13507 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:0px;
  2010. height:0px;
  2011. }
  2012. #u13508_img {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:24px;
  2018. height:24px;
  2019. }
  2020. #u13508 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:1157px;
  2024. top:792px;
  2025. width:24px;
  2026. height:24px;
  2027. display:flex;
  2028. font-size:8px;
  2029. }
  2030. #u13508 .text {
  2031. position:absolute;
  2032. align-self:center;
  2033. padding:2px 2px 2px 2px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u13508_text {
  2038. border-width:0px;
  2039. word-wrap:break-word;
  2040. text-transform:none;
  2041. }
  2042. #u13509_div {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:37px;
  2048. height:17px;
  2049. background:inherit;
  2050. background-color:rgba(255, 255, 255, 0);
  2051. border:none;
  2052. border-radius:0px;
  2053. -moz-box-shadow:none;
  2054. -webkit-box-shadow:none;
  2055. box-shadow:none;
  2056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:12px;
  2060. }
  2061. #u13509 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:1151px;
  2065. top:817px;
  2066. width:37px;
  2067. height:17px;
  2068. display:flex;
  2069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:12px;
  2073. }
  2074. #u13509 .text {
  2075. position:absolute;
  2076. align-self:flex-start;
  2077. padding:0px 0px 0px 0px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u13509_text {
  2082. border-width:0px;
  2083. white-space:nowrap;
  2084. text-transform:none;
  2085. }
  2086. #u13510 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:0px;
  2092. height:0px;
  2093. }
  2094. #u13511_img {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:24px;
  2100. height:24px;
  2101. }
  2102. #u13511 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:1063px;
  2106. top:792px;
  2107. width:24px;
  2108. height:24px;
  2109. display:flex;
  2110. font-size:8px;
  2111. }
  2112. #u13511 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 2px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u13511_text {
  2120. border-width:0px;
  2121. word-wrap:break-word;
  2122. text-transform:none;
  2123. }
  2124. #u13512_div {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:37px;
  2130. height:17px;
  2131. background:inherit;
  2132. background-color:rgba(255, 255, 255, 0);
  2133. border:none;
  2134. border-radius:0px;
  2135. -moz-box-shadow:none;
  2136. -webkit-box-shadow:none;
  2137. box-shadow:none;
  2138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. font-size:12px;
  2142. }
  2143. #u13512 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:1057px;
  2147. top:817px;
  2148. width:37px;
  2149. height:17px;
  2150. display:flex;
  2151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2152. font-weight:400;
  2153. font-style:normal;
  2154. font-size:12px;
  2155. }
  2156. #u13512 .text {
  2157. position:absolute;
  2158. align-self:flex-start;
  2159. padding:0px 0px 0px 0px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u13512_text {
  2164. border-width:0px;
  2165. white-space:nowrap;
  2166. text-transform:none;
  2167. }
  2168. #u13513_img {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:375px;
  2174. height:733px;
  2175. }
  2176. #u13513 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:936px;
  2180. top:106px;
  2181. width:375px;
  2182. height:733px;
  2183. display:flex;
  2184. }
  2185. #u13513 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 2px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u13513_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. visibility:hidden;
  2197. }
  2198. #u13514 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:0px;
  2204. height:0px;
  2205. }
  2206. #u13515_img {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:11px;
  2212. height:18px;
  2213. }
  2214. #u13515 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:946px;
  2218. top:79px;
  2219. width:11px;
  2220. height:18px;
  2221. display:flex;
  2222. }
  2223. #u13515 .text {
  2224. position:absolute;
  2225. align-self:center;
  2226. padding:2px 2px 2px 2px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u13515_text {
  2231. border-width:0px;
  2232. word-wrap:break-word;
  2233. text-transform:none;
  2234. visibility:hidden;
  2235. }
  2236. #u13516_div {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:57px;
  2242. height:20px;
  2243. background:inherit;
  2244. background-color:rgba(255, 255, 255, 0);
  2245. border:none;
  2246. border-radius:0px;
  2247. -moz-box-shadow:none;
  2248. -webkit-box-shadow:none;
  2249. box-shadow:none;
  2250. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2251. font-weight:500;
  2252. font-style:normal;
  2253. font-size:14px;
  2254. }
  2255. #u13516 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:1090px;
  2259. top:77px;
  2260. width:57px;
  2261. height:20px;
  2262. display:flex;
  2263. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2264. font-weight:500;
  2265. font-style:normal;
  2266. font-size:14px;
  2267. }
  2268. #u13516 .text {
  2269. position:absolute;
  2270. align-self:flex-start;
  2271. padding:0px 0px 0px 0px;
  2272. box-sizing:border-box;
  2273. width:100%;
  2274. }
  2275. #u13516_text {
  2276. border-width:0px;
  2277. white-space:nowrap;
  2278. text-transform:none;
  2279. }
  2280. #u13517_div {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:322px;
  2286. height:60px;
  2287. background:inherit;
  2288. background-color:rgba(255, 255, 255, 0);
  2289. border:none;
  2290. border-radius:0px;
  2291. -moz-box-shadow:none;
  2292. -webkit-box-shadow:none;
  2293. box-shadow:none;
  2294. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2295. font-weight:500;
  2296. font-style:normal;
  2297. font-size:18px;
  2298. text-align:center;
  2299. line-height:30px;
  2300. }
  2301. #u13517 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:958px;
  2305. top:116px;
  2306. width:322px;
  2307. height:60px;
  2308. display:flex;
  2309. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2310. font-weight:500;
  2311. font-style:normal;
  2312. font-size:18px;
  2313. text-align:center;
  2314. line-height:30px;
  2315. }
  2316. #u13517 .text {
  2317. position:absolute;
  2318. align-self:flex-start;
  2319. padding:0px 0px 0px 0px;
  2320. box-sizing:border-box;
  2321. width:100%;
  2322. }
  2323. #u13517_text {
  2324. border-width:0px;
  2325. word-wrap:break-word;
  2326. text-transform:none;
  2327. }
  2328. #u13518_div {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:174px;
  2334. height:50px;
  2335. background:inherit;
  2336. background-color:rgba(255, 255, 255, 0);
  2337. border:none;
  2338. border-left:0px;
  2339. border-top:0px;
  2340. border-right:0px;
  2341. border-radius:0px;
  2342. border-bottom-right-radius:0px;
  2343. border-bottom-left-radius:0px;
  2344. -moz-box-shadow:none;
  2345. -webkit-box-shadow:none;
  2346. box-shadow:none;
  2347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2348. font-weight:400;
  2349. font-style:normal;
  2350. font-size:12px;
  2351. color:#7F7F7F;
  2352. line-height:25px;
  2353. }
  2354. #u13518 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:946px;
  2358. top:181px;
  2359. width:174px;
  2360. height:50px;
  2361. display:flex;
  2362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2363. font-weight:400;
  2364. font-style:normal;
  2365. font-size:12px;
  2366. color:#7F7F7F;
  2367. line-height:25px;
  2368. }
  2369. #u13518 .text {
  2370. position:absolute;
  2371. align-self:flex-start;
  2372. padding:0px 0px 0px 0px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u13518_text {
  2377. border-width:0px;
  2378. white-space:nowrap;
  2379. text-transform:none;
  2380. }
  2381. #u13519_div {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:353px;
  2387. height:50px;
  2388. background:inherit;
  2389. background-color:rgba(255, 255, 255, 0);
  2390. border:none;
  2391. border-left:0px;
  2392. border-top:0px;
  2393. border-right:0px;
  2394. border-radius:0px;
  2395. border-bottom-right-radius:0px;
  2396. border-bottom-left-radius:0px;
  2397. -moz-box-shadow:none;
  2398. -webkit-box-shadow:none;
  2399. box-shadow:none;
  2400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:14px;
  2404. line-height:25px;
  2405. }
  2406. #u13519 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:946px;
  2410. top:248px;
  2411. width:353px;
  2412. height:50px;
  2413. display:flex;
  2414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2415. font-weight:400;
  2416. font-style:normal;
  2417. font-size:14px;
  2418. line-height:25px;
  2419. }
  2420. #u13519 .text {
  2421. position:absolute;
  2422. align-self:flex-start;
  2423. padding:0px 0px 0px 0px;
  2424. box-sizing:border-box;
  2425. width:100%;
  2426. }
  2427. #u13519_text {
  2428. border-width:0px;
  2429. word-wrap:break-word;
  2430. text-transform:none;
  2431. }
  2432. #u13521_img {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:433px;
  2438. height:865px;
  2439. }
  2440. #u13521 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:453px;
  2444. top:0px;
  2445. width:433px;
  2446. height:865px;
  2447. display:flex;
  2448. }
  2449. #u13521 .text {
  2450. position:absolute;
  2451. align-self:center;
  2452. padding:2px 2px 2px 2px;
  2453. box-sizing:border-box;
  2454. width:100%;
  2455. }
  2456. #u13521_text {
  2457. border-width:0px;
  2458. word-wrap:break-word;
  2459. text-transform:none;
  2460. visibility:hidden;
  2461. }
  2462. #u13522_div {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:375px;
  2468. height:40px;
  2469. background:inherit;
  2470. background-color:rgba(255, 255, 255, 1);
  2471. box-sizing:border-box;
  2472. border-width:1px;
  2473. border-style:solid;
  2474. border-color:rgba(215, 215, 215, 1);
  2475. border-left:0px;
  2476. border-top:0px;
  2477. border-right:0px;
  2478. border-radius:0px;
  2479. border-bottom-right-radius:0px;
  2480. border-bottom-left-radius:0px;
  2481. -moz-box-shadow:none;
  2482. -webkit-box-shadow:none;
  2483. box-shadow:none;
  2484. }
  2485. #u13522 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:482px;
  2489. top:67px;
  2490. width:375px;
  2491. height:40px;
  2492. display:flex;
  2493. }
  2494. #u13522 .text {
  2495. position:absolute;
  2496. align-self:center;
  2497. padding:2px 2px 2px 2px;
  2498. box-sizing:border-box;
  2499. width:100%;
  2500. }
  2501. #u13522_text {
  2502. border-width:0px;
  2503. word-wrap:break-word;
  2504. text-transform:none;
  2505. visibility:hidden;
  2506. }
  2507. #u13523 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:0px;
  2513. height:0px;
  2514. }
  2515. #u13524_div {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:88px;
  2521. height:32px;
  2522. background:inherit;
  2523. background-color:rgba(255, 255, 255, 1);
  2524. box-sizing:border-box;
  2525. border-width:1px;
  2526. border-style:solid;
  2527. border-color:rgba(242, 242, 242, 1);
  2528. border-radius:33px;
  2529. -moz-box-shadow:none;
  2530. -webkit-box-shadow:none;
  2531. box-shadow:none;
  2532. }
  2533. #u13524 {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:762px;
  2537. top:71px;
  2538. width:88px;
  2539. height:32px;
  2540. display:flex;
  2541. }
  2542. #u13524 .text {
  2543. position:absolute;
  2544. align-self:center;
  2545. padding:2px 2px 2px 2px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u13524_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. visibility:hidden;
  2554. }
  2555. #u13525 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:0px;
  2561. height:0px;
  2562. }
  2563. #u13526_img {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:18px;
  2569. height:18px;
  2570. }
  2571. #u13526 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:825px;
  2575. top:78px;
  2576. width:18px;
  2577. height:18px;
  2578. display:flex;
  2579. }
  2580. #u13526 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 2px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u13526_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. visibility:hidden;
  2592. }
  2593. #u13527_img {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:6px;
  2599. height:6px;
  2600. }
  2601. #u13527 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:831px;
  2605. top:84px;
  2606. width:6px;
  2607. height:6px;
  2608. display:flex;
  2609. }
  2610. #u13527 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 2px 2px 2px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u13527_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. visibility:hidden;
  2622. }
  2623. #u13528 {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:0px;
  2629. height:0px;
  2630. }
  2631. #u13529_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:5px;
  2637. height:5px;
  2638. }
  2639. #u13529 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:776px;
  2643. top:85px;
  2644. width:5px;
  2645. height:5px;
  2646. display:flex;
  2647. }
  2648. #u13529 .text {
  2649. position:absolute;
  2650. align-self:center;
  2651. padding:2px 2px 2px 2px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u13529_text {
  2656. border-width:0px;
  2657. word-wrap:break-word;
  2658. text-transform:none;
  2659. visibility:hidden;
  2660. }
  2661. #u13530_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:5px;
  2667. height:5px;
  2668. }
  2669. #u13530 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:792px;
  2673. top:85px;
  2674. width:5px;
  2675. height:5px;
  2676. display:flex;
  2677. }
  2678. #u13530 .text {
  2679. position:absolute;
  2680. align-self:center;
  2681. padding:2px 2px 2px 2px;
  2682. box-sizing:border-box;
  2683. width:100%;
  2684. }
  2685. #u13530_text {
  2686. border-width:0px;
  2687. word-wrap:break-word;
  2688. text-transform:none;
  2689. visibility:hidden;
  2690. }
  2691. #u13531_img {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:7px;
  2697. height:7px;
  2698. }
  2699. #u13531 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:783px;
  2703. top:84px;
  2704. width:7px;
  2705. height:7px;
  2706. display:flex;
  2707. }
  2708. #u13531 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 2px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u13531_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. visibility:hidden;
  2720. }
  2721. #u13532_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:19px;
  2727. height:2px;
  2728. }
  2729. #u13532 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:800px;
  2733. top:87px;
  2734. width:18px;
  2735. height:1px;
  2736. display:flex;
  2737. -webkit-transform:rotate(90deg);
  2738. -moz-transform:rotate(90deg);
  2739. -ms-transform:rotate(90deg);
  2740. transform:rotate(90deg);
  2741. }
  2742. #u13532 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:2px 2px 2px 2px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u13532_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. visibility:hidden;
  2754. }
  2755. #u13533_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:375px;
  2761. height:44px;
  2762. }
  2763. #u13533 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:482px;
  2767. top:24px;
  2768. width:375px;
  2769. height:44px;
  2770. display:flex;
  2771. }
  2772. #u13533 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:2px 2px 2px 2px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u13533_text {
  2780. border-width:0px;
  2781. word-wrap:break-word;
  2782. text-transform:none;
  2783. visibility:hidden;
  2784. }
  2785. #u13534_div {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:375px;
  2791. height:50px;
  2792. background:inherit;
  2793. background-color:rgba(255, 255, 255, 1);
  2794. box-sizing:border-box;
  2795. border-width:1px;
  2796. border-style:solid;
  2797. border-color:rgba(242, 242, 242, 1);
  2798. border-radius:26px;
  2799. border-top-left-radius:0px;
  2800. border-top-right-radius:0px;
  2801. -moz-box-shadow:none;
  2802. -webkit-box-shadow:none;
  2803. box-shadow:none;
  2804. }
  2805. #u13534 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:482px;
  2809. top:788px;
  2810. width:375px;
  2811. height:50px;
  2812. display:flex;
  2813. }
  2814. #u13534 .text {
  2815. position:absolute;
  2816. align-self:center;
  2817. padding:2px 2px 2px 2px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u13534_text {
  2822. border-width:0px;
  2823. word-wrap:break-word;
  2824. text-transform:none;
  2825. visibility:hidden;
  2826. }
  2827. #u13535 {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:0px;
  2833. height:0px;
  2834. }
  2835. #u13536_img {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:24px;
  2841. height:24px;
  2842. }
  2843. #u13536 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:522px;
  2847. top:792px;
  2848. width:24px;
  2849. height:24px;
  2850. display:flex;
  2851. font-size:8px;
  2852. }
  2853. #u13536 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:2px 2px 2px 2px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u13536_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. }
  2865. #u13537_div {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:25px;
  2871. height:17px;
  2872. background:inherit;
  2873. background-color:rgba(255, 255, 255, 0);
  2874. border:none;
  2875. border-radius:0px;
  2876. -moz-box-shadow:none;
  2877. -webkit-box-shadow:none;
  2878. box-shadow:none;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:12px;
  2883. }
  2884. #u13537 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:522px;
  2888. top:817px;
  2889. width:25px;
  2890. height:17px;
  2891. display:flex;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:12px;
  2896. }
  2897. #u13537 .text {
  2898. position:absolute;
  2899. align-self:flex-start;
  2900. padding:0px 0px 0px 0px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u13537_text {
  2905. border-width:0px;
  2906. white-space:nowrap;
  2907. text-transform:none;
  2908. }
  2909. #u13538 {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:0px;
  2915. height:0px;
  2916. }
  2917. #u13539_img {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:24px;
  2923. height:24px;
  2924. }
  2925. #u13539 {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:792px;
  2929. top:794px;
  2930. width:24px;
  2931. height:24px;
  2932. display:flex;
  2933. font-size:8px;
  2934. }
  2935. #u13539 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 2px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u13539_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. }
  2947. #u13540_div {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:25px;
  2953. height:17px;
  2954. background:inherit;
  2955. background-color:rgba(255, 255, 255, 0);
  2956. border:none;
  2957. border-radius:0px;
  2958. -moz-box-shadow:none;
  2959. -webkit-box-shadow:none;
  2960. box-shadow:none;
  2961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2962. font-weight:400;
  2963. font-style:normal;
  2964. font-size:12px;
  2965. }
  2966. #u13540 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:792px;
  2970. top:819px;
  2971. width:25px;
  2972. height:17px;
  2973. display:flex;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:12px;
  2978. }
  2979. #u13540 .text {
  2980. position:absolute;
  2981. align-self:flex-start;
  2982. padding:0px 0px 0px 0px;
  2983. box-sizing:border-box;
  2984. width:100%;
  2985. }
  2986. #u13540_text {
  2987. border-width:0px;
  2988. white-space:nowrap;
  2989. text-transform:none;
  2990. }
  2991. #u13541_div {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:375px;
  2997. height:681px;
  2998. background:inherit;
  2999. background-color:rgba(242, 242, 242, 0.462745098039216);
  3000. border:none;
  3001. border-radius:0px;
  3002. -moz-box-shadow:none;
  3003. -webkit-box-shadow:none;
  3004. box-shadow:none;
  3005. }
  3006. #u13541 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:482px;
  3010. top:107px;
  3011. width:375px;
  3012. height:681px;
  3013. display:flex;
  3014. }
  3015. #u13541 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 2px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u13541_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. visibility:hidden;
  3027. }
  3028. #u13542 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:0px;
  3032. top:0px;
  3033. width:0px;
  3034. height:0px;
  3035. }
  3036. #u13543_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:24px;
  3042. height:24px;
  3043. }
  3044. #u13543 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:704px;
  3048. top:792px;
  3049. width:24px;
  3050. height:24px;
  3051. display:flex;
  3052. font-size:8px;
  3053. }
  3054. #u13543 .text {
  3055. position:absolute;
  3056. align-self:center;
  3057. padding:2px 2px 2px 2px;
  3058. box-sizing:border-box;
  3059. width:100%;
  3060. }
  3061. #u13543_text {
  3062. border-width:0px;
  3063. word-wrap:break-word;
  3064. text-transform:none;
  3065. }
  3066. #u13544_div {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:37px;
  3072. height:17px;
  3073. background:inherit;
  3074. background-color:rgba(255, 255, 255, 0);
  3075. border:none;
  3076. border-radius:0px;
  3077. -moz-box-shadow:none;
  3078. -webkit-box-shadow:none;
  3079. box-shadow:none;
  3080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. font-size:12px;
  3084. }
  3085. #u13544 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:698px;
  3089. top:817px;
  3090. width:37px;
  3091. height:17px;
  3092. display:flex;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:12px;
  3097. }
  3098. #u13544 .text {
  3099. position:absolute;
  3100. align-self:flex-start;
  3101. padding:0px 0px 0px 0px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u13544_text {
  3106. border-width:0px;
  3107. white-space:nowrap;
  3108. text-transform:none;
  3109. }
  3110. #u13545 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:0px;
  3116. height:0px;
  3117. }
  3118. #u13546_img {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:24px;
  3124. height:24px;
  3125. }
  3126. #u13546 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:610px;
  3130. top:792px;
  3131. width:24px;
  3132. height:24px;
  3133. display:flex;
  3134. font-size:8px;
  3135. }
  3136. #u13546 .text {
  3137. position:absolute;
  3138. align-self:center;
  3139. padding:2px 2px 2px 2px;
  3140. box-sizing:border-box;
  3141. width:100%;
  3142. }
  3143. #u13546_text {
  3144. border-width:0px;
  3145. word-wrap:break-word;
  3146. text-transform:none;
  3147. }
  3148. #u13547_div {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:37px;
  3154. height:17px;
  3155. background:inherit;
  3156. background-color:rgba(255, 255, 255, 0);
  3157. border:none;
  3158. border-radius:0px;
  3159. -moz-box-shadow:none;
  3160. -webkit-box-shadow:none;
  3161. box-shadow:none;
  3162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3163. font-weight:400;
  3164. font-style:normal;
  3165. font-size:12px;
  3166. }
  3167. #u13547 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:604px;
  3171. top:817px;
  3172. width:37px;
  3173. height:17px;
  3174. display:flex;
  3175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3176. font-weight:400;
  3177. font-style:normal;
  3178. font-size:12px;
  3179. }
  3180. #u13547 .text {
  3181. position:absolute;
  3182. align-self:flex-start;
  3183. padding:0px 0px 0px 0px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u13547_text {
  3188. border-width:0px;
  3189. white-space:nowrap;
  3190. text-transform:none;
  3191. }
  3192. #u13548 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:0px;
  3198. height:0px;
  3199. }
  3200. #u13549_div {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:375px;
  3206. height:50px;
  3207. background:inherit;
  3208. background-color:rgba(255, 255, 255, 1);
  3209. box-sizing:border-box;
  3210. border-width:1px;
  3211. border-style:solid;
  3212. border-color:rgba(242, 242, 242, 1);
  3213. border-radius:26px;
  3214. border-top-left-radius:0px;
  3215. border-top-right-radius:0px;
  3216. -moz-box-shadow:none;
  3217. -webkit-box-shadow:none;
  3218. box-shadow:none;
  3219. }
  3220. #u13549 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:482px;
  3224. top:788px;
  3225. width:375px;
  3226. height:50px;
  3227. display:flex;
  3228. }
  3229. #u13549 .text {
  3230. position:absolute;
  3231. align-self:center;
  3232. padding:2px 2px 2px 2px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u13549_text {
  3237. border-width:0px;
  3238. word-wrap:break-word;
  3239. text-transform:none;
  3240. visibility:hidden;
  3241. }
  3242. #u13550 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:0px;
  3247. width:0px;
  3248. height:0px;
  3249. }
  3250. #u13551_img {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:24px;
  3256. height:24px;
  3257. }
  3258. #u13551 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:792px;
  3262. top:794px;
  3263. width:24px;
  3264. height:24px;
  3265. display:flex;
  3266. font-size:8px;
  3267. }
  3268. #u13551 .text {
  3269. position:absolute;
  3270. align-self:center;
  3271. padding:2px 2px 2px 2px;
  3272. box-sizing:border-box;
  3273. width:100%;
  3274. }
  3275. #u13551_text {
  3276. border-width:0px;
  3277. word-wrap:break-word;
  3278. text-transform:none;
  3279. }
  3280. #u13552_div {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:25px;
  3286. height:17px;
  3287. background:inherit;
  3288. background-color:rgba(255, 255, 255, 0);
  3289. border:none;
  3290. border-radius:0px;
  3291. -moz-box-shadow:none;
  3292. -webkit-box-shadow:none;
  3293. box-shadow:none;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:12px;
  3298. }
  3299. #u13552 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:792px;
  3303. top:819px;
  3304. width:25px;
  3305. height:17px;
  3306. display:flex;
  3307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:12px;
  3311. }
  3312. #u13552 .text {
  3313. position:absolute;
  3314. align-self:flex-start;
  3315. padding:0px 0px 0px 0px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u13552_text {
  3320. border-width:0px;
  3321. white-space:nowrap;
  3322. text-transform:none;
  3323. }
  3324. #u13553 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:0px;
  3328. top:0px;
  3329. width:0px;
  3330. height:0px;
  3331. }
  3332. #u13554_img {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:24px;
  3338. height:24px;
  3339. }
  3340. #u13554 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:700px;
  3344. top:792px;
  3345. width:24px;
  3346. height:24px;
  3347. display:flex;
  3348. font-size:8px;
  3349. }
  3350. #u13554 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:2px 2px 2px 2px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u13554_text {
  3358. border-width:0px;
  3359. word-wrap:break-word;
  3360. text-transform:none;
  3361. }
  3362. #u13555_div {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:49px;
  3368. height:17px;
  3369. background:inherit;
  3370. background-color:rgba(255, 255, 255, 0);
  3371. border:none;
  3372. border-radius:0px;
  3373. -moz-box-shadow:none;
  3374. -webkit-box-shadow:none;
  3375. box-shadow:none;
  3376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3377. font-weight:400;
  3378. font-style:normal;
  3379. font-size:12px;
  3380. }
  3381. #u13555 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:686px;
  3385. top:817px;
  3386. width:49px;
  3387. height:17px;
  3388. display:flex;
  3389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:12px;
  3393. }
  3394. #u13555 .text {
  3395. position:absolute;
  3396. align-self:flex-start;
  3397. padding:0px 0px 0px 0px;
  3398. box-sizing:border-box;
  3399. width:100%;
  3400. }
  3401. #u13555_text {
  3402. border-width:0px;
  3403. white-space:nowrap;
  3404. text-transform:none;
  3405. }
  3406. #u13556 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:0px;
  3412. height:0px;
  3413. }
  3414. #u13557_img {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:24px;
  3420. height:24px;
  3421. }
  3422. #u13557 {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:522px;
  3426. top:792px;
  3427. width:24px;
  3428. height:24px;
  3429. display:flex;
  3430. font-size:8px;
  3431. color:#FFFFFF;
  3432. }
  3433. #u13557 .text {
  3434. position:absolute;
  3435. align-self:center;
  3436. padding:2px 2px 2px 2px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u13557_text {
  3441. border-width:0px;
  3442. word-wrap:break-word;
  3443. text-transform:none;
  3444. }
  3445. #u13558_div {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:25px;
  3451. height:17px;
  3452. background:inherit;
  3453. background-color:rgba(255, 255, 255, 0);
  3454. border:none;
  3455. border-radius:0px;
  3456. -moz-box-shadow:none;
  3457. -webkit-box-shadow:none;
  3458. box-shadow:none;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:12px;
  3463. }
  3464. #u13558 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:522px;
  3468. top:817px;
  3469. width:25px;
  3470. height:17px;
  3471. display:flex;
  3472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3473. font-weight:400;
  3474. font-style:normal;
  3475. font-size:12px;
  3476. }
  3477. #u13558 .text {
  3478. position:absolute;
  3479. align-self:flex-start;
  3480. padding:0px 0px 0px 0px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u13558_text {
  3485. border-width:0px;
  3486. white-space:nowrap;
  3487. text-transform:none;
  3488. }
  3489. #u13559 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:0px;
  3495. height:0px;
  3496. }
  3497. #u13560_img {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:24px;
  3503. height:24px;
  3504. }
  3505. #u13560 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:608px;
  3509. top:792px;
  3510. width:24px;
  3511. height:24px;
  3512. display:flex;
  3513. font-size:8px;
  3514. }
  3515. #u13560 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:2px 2px 2px 2px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u13560_text {
  3523. border-width:0px;
  3524. word-wrap:break-word;
  3525. text-transform:none;
  3526. }
  3527. #u13561_div {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:25px;
  3533. height:17px;
  3534. background:inherit;
  3535. background-color:rgba(255, 255, 255, 0);
  3536. border:none;
  3537. border-radius:0px;
  3538. -moz-box-shadow:none;
  3539. -webkit-box-shadow:none;
  3540. box-shadow:none;
  3541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. font-size:12px;
  3545. }
  3546. #u13561 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:608px;
  3550. top:817px;
  3551. width:25px;
  3552. height:17px;
  3553. display:flex;
  3554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. font-size:12px;
  3558. }
  3559. #u13561 .text {
  3560. position:absolute;
  3561. align-self:flex-start;
  3562. padding:0px 0px 0px 0px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u13561_text {
  3567. border-width:0px;
  3568. white-space:nowrap;
  3569. text-transform:none;
  3570. }
  3571. #u13562_div {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:85px;
  3577. height:30px;
  3578. background:inherit;
  3579. background-color:rgba(255, 255, 255, 0);
  3580. border:none;
  3581. border-left:0px;
  3582. border-top:0px;
  3583. border-right:0px;
  3584. border-radius:0px;
  3585. border-bottom-right-radius:0px;
  3586. border-bottom-left-radius:0px;
  3587. -moz-box-shadow:none;
  3588. -webkit-box-shadow:none;
  3589. box-shadow:none;
  3590. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3591. font-weight:500;
  3592. font-style:normal;
  3593. font-size:14px;
  3594. line-height:30px;
  3595. }
  3596. #u13562 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:627px;
  3600. top:76px;
  3601. width:85px;
  3602. height:30px;
  3603. display:flex;
  3604. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3605. font-weight:500;
  3606. font-style:normal;
  3607. font-size:14px;
  3608. line-height:30px;
  3609. }
  3610. #u13562 .text {
  3611. position:absolute;
  3612. align-self:flex-start;
  3613. padding:0px 0px 0px 0px;
  3614. box-sizing:border-box;
  3615. width:100%;
  3616. }
  3617. #u13562_text {
  3618. border-width:0px;
  3619. white-space:nowrap;
  3620. text-transform:none;
  3621. }
  3622. #u13563_img {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:375px;
  3628. height:811px;
  3629. }
  3630. #u13563 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:482px;
  3634. top:27px;
  3635. width:375px;
  3636. height:811px;
  3637. display:flex;
  3638. }
  3639. #u13563 .text {
  3640. position:absolute;
  3641. align-self:center;
  3642. padding:2px 2px 2px 2px;
  3643. box-sizing:border-box;
  3644. width:100%;
  3645. }
  3646. #u13563_text {
  3647. border-width:0px;
  3648. word-wrap:break-word;
  3649. text-transform:none;
  3650. visibility:hidden;
  3651. }
  3652. #u13564 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:0px;
  3658. height:0px;
  3659. }
  3660. #u13565_div {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:375px;
  3666. height:30px;
  3667. background:inherit;
  3668. background-color:rgba(245, 154, 35, 1);
  3669. box-sizing:border-box;
  3670. border-width:1px;
  3671. border-style:solid;
  3672. border-color:rgba(242, 242, 242, 1);
  3673. border-left:0px;
  3674. border-top:0px;
  3675. border-bottom:0px;
  3676. border-radius:0px;
  3677. border-top-right-radius:0px;
  3678. border-bottom-right-radius:0px;
  3679. -moz-box-shadow:none;
  3680. -webkit-box-shadow:none;
  3681. box-shadow:none;
  3682. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3683. font-weight:500;
  3684. font-style:normal;
  3685. font-size:12px;
  3686. }
  3687. #u13565 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:482px;
  3691. top:106px;
  3692. width:375px;
  3693. height:30px;
  3694. display:flex;
  3695. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3696. font-weight:500;
  3697. font-style:normal;
  3698. font-size:12px;
  3699. }
  3700. #u13565 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:0px 2px 0px 10px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u13565_text {
  3708. border-width:0px;
  3709. word-wrap:break-word;
  3710. text-transform:none;
  3711. visibility:hidden;
  3712. }
  3713. #u13566_img {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:14px;
  3719. height:15px;
  3720. }
  3721. #u13566 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:493px;
  3725. top:114px;
  3726. width:14px;
  3727. height:15px;
  3728. display:flex;
  3729. }
  3730. #u13566 .text {
  3731. position:absolute;
  3732. align-self:center;
  3733. padding:2px 2px 2px 2px;
  3734. box-sizing:border-box;
  3735. width:100%;
  3736. }
  3737. #u13566_text {
  3738. border-width:0px;
  3739. word-wrap:break-word;
  3740. text-transform:none;
  3741. visibility:hidden;
  3742. }
  3743. #u13567 {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:517px;
  3747. top:113px;
  3748. width:334px;
  3749. height:34px;
  3750. }
  3751. #u13567_state0 {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:334px;
  3757. height:34px;
  3758. overflow:auto;
  3759. -webkit-overflow-scrolling:touch;
  3760. -ms-overflow-y:hidden;
  3761. overflow-y:hidden;
  3762. background-image:none;
  3763. border:none;
  3764. border-radius:0px;
  3765. -moz-box-shadow:none;
  3766. -webkit-box-shadow:none;
  3767. box-shadow:none;
  3768. }
  3769. #u13567_state0_content {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:1px;
  3775. height:1px;
  3776. }
  3777. #u13568_div {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:577px;
  3783. height:17px;
  3784. background:inherit;
  3785. background-color:rgba(255, 255, 255, 0);
  3786. border:none;
  3787. border-radius:0px;
  3788. -moz-box-shadow:none;
  3789. -webkit-box-shadow:none;
  3790. box-shadow:none;
  3791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3792. font-weight:400;
  3793. font-style:normal;
  3794. font-size:12px;
  3795. }
  3796. #u13568 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:577px;
  3802. height:17px;
  3803. display:flex;
  3804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:12px;
  3808. }
  3809. #u13568 .text {
  3810. position:absolute;
  3811. align-self:flex-start;
  3812. padding:0px 0px 0px 0px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u13568_text {
  3817. border-width:0px;
  3818. white-space:nowrap;
  3819. text-transform:none;
  3820. }
  3821. #u13569_div {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:375px;
  3827. height:728px;
  3828. background:inherit;
  3829. background-color:rgba(51, 51, 51, 0.8);
  3830. border:none;
  3831. border-radius:0px;
  3832. -moz-box-shadow:none;
  3833. -webkit-box-shadow:none;
  3834. box-shadow:none;
  3835. }
  3836. #u13569 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:482px;
  3840. top:110px;
  3841. width:375px;
  3842. height:728px;
  3843. display:flex;
  3844. }
  3845. #u13569 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 2px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u13569_text {
  3853. border-width:0px;
  3854. word-wrap:break-word;
  3855. text-transform:none;
  3856. visibility:hidden;
  3857. }
  3858. #u13570 {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:0px;
  3864. height:0px;
  3865. }
  3866. #u13571_div {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:347px;
  3872. height:280px;
  3873. background:inherit;
  3874. background-color:rgba(242, 242, 242, 1);
  3875. border:none;
  3876. border-radius:4px;
  3877. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3878. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3879. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3880. }
  3881. #u13571 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:496px;
  3885. top:241px;
  3886. width:347px;
  3887. height:280px;
  3888. display:flex;
  3889. }
  3890. #u13571 .text {
  3891. position:absolute;
  3892. align-self:center;
  3893. padding:2px 2px 2px 2px;
  3894. box-sizing:border-box;
  3895. width:100%;
  3896. }
  3897. #u13571_text {
  3898. border-width:0px;
  3899. word-wrap:break-word;
  3900. text-transform:none;
  3901. visibility:hidden;
  3902. }
  3903. #u13572_img {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:333px;
  3909. height:220px;
  3910. }
  3911. #u13572 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:503px;
  3915. top:290px;
  3916. width:333px;
  3917. height:220px;
  3918. display:flex;
  3919. }
  3920. #u13572 .text {
  3921. position:absolute;
  3922. align-self:center;
  3923. padding:2px 2px 2px 2px;
  3924. box-sizing:border-box;
  3925. width:100%;
  3926. }
  3927. #u13572_text {
  3928. border-width:0px;
  3929. word-wrap:break-word;
  3930. text-transform:none;
  3931. visibility:hidden;
  3932. }
  3933. #u13573_img {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:20px;
  3939. height:20px;
  3940. }
  3941. #u13573 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:823px;
  3945. top:215px;
  3946. width:20px;
  3947. height:20px;
  3948. display:flex;
  3949. }
  3950. #u13573 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:2px 2px 2px 2px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u13573_text {
  3958. border-width:0px;
  3959. word-wrap:break-word;
  3960. text-transform:none;
  3961. visibility:hidden;
  3962. }
  3963. #u13574_div {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:307px;
  3969. height:25px;
  3970. background:inherit;
  3971. background-color:rgba(255, 255, 255, 0);
  3972. border:none;
  3973. border-radius:0px;
  3974. -moz-box-shadow:none;
  3975. -webkit-box-shadow:none;
  3976. box-shadow:none;
  3977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:18px;
  3981. color:#555555;
  3982. }
  3983. #u13574 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:516px;
  3987. top:255px;
  3988. width:307px;
  3989. height:25px;
  3990. display:flex;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:18px;
  3995. color:#555555;
  3996. }
  3997. #u13574 .text {
  3998. position:absolute;
  3999. align-self:flex-start;
  4000. padding:0px 0px 0px 0px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u13574_text {
  4005. border-width:0px;
  4006. white-space:nowrap;
  4007. text-transform:none;
  4008. }