styles.css 74 KB

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