styles.css 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:433px;
  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. #u32192_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u32192 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u32192 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u32192_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u32193_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. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u32193 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u32193 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u32193_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u32194 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u32195_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u32195 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u32195 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u32195_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u32196 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u32197_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u32197 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u32197 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u32197_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u32198_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u32198 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u32198 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u32198_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u32199 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u32200_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u32200 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u32200 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u32200_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u32201_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u32201 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u32201 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u32201_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u32202_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u32202 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u32202 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u32202_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u32203_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u32203 {
  314. border-width:0px;
  315. position:absolute;
  316. left:347px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u32203 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u32203_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u32204_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u32204 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u32204 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u32204_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u32205_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:375px;
  375. height:50px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(242, 242, 242, 1);
  382. border-radius:26px;
  383. border-top-left-radius:0px;
  384. border-top-right-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. }
  389. #u32205 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u32205 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u32205_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u32206 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u32207_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u32207 {
  428. border-width:0px;
  429. position:absolute;
  430. left:69px;
  431. top:792px;
  432. width:24px;
  433. height:24px;
  434. display:flex;
  435. font-size:8px;
  436. }
  437. #u32207 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u32207_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u32208_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:25px;
  455. height:17px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:12px;
  467. }
  468. #u32208 {
  469. border-width:0px;
  470. position:absolute;
  471. left:69px;
  472. top:817px;
  473. width:25px;
  474. height:17px;
  475. display:flex;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. font-size:12px;
  480. }
  481. #u32208 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u32208_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u32209 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u32210_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u32210 {
  510. border-width:0px;
  511. position:absolute;
  512. left:339px;
  513. top:794px;
  514. width:24px;
  515. height:24px;
  516. display:flex;
  517. font-size:8px;
  518. }
  519. #u32210 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u32210_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u32211_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:25px;
  537. height:17px;
  538. background:inherit;
  539. background-color:rgba(255, 255, 255, 0);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:12px;
  549. }
  550. #u32211 {
  551. border-width:0px;
  552. position:absolute;
  553. left:339px;
  554. top:819px;
  555. width:25px;
  556. height:17px;
  557. display:flex;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. font-size:12px;
  562. }
  563. #u32211 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u32211_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u32212_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:375px;
  581. height:681px;
  582. background:inherit;
  583. background-color:rgba(242, 242, 242, 0.462745098039216);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. }
  590. #u32212 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u32212 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u32212_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u32213 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u32214_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u32214 {
  629. border-width:0px;
  630. position:absolute;
  631. left:251px;
  632. top:792px;
  633. width:24px;
  634. height:24px;
  635. display:flex;
  636. font-size:8px;
  637. }
  638. #u32214 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u32214_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u32215_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:37px;
  656. height:17px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. font-size:12px;
  668. }
  669. #u32215 {
  670. border-width:0px;
  671. position:absolute;
  672. left:245px;
  673. top:817px;
  674. width:37px;
  675. height:17px;
  676. display:flex;
  677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. }
  682. #u32215 .text {
  683. position:absolute;
  684. align-self:flex-start;
  685. padding:0px 0px 0px 0px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u32215_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u32216 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u32217_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u32217 {
  711. border-width:0px;
  712. position:absolute;
  713. left:157px;
  714. top:792px;
  715. width:24px;
  716. height:24px;
  717. display:flex;
  718. font-size:8px;
  719. }
  720. #u32217 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u32217_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u32218_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:37px;
  738. height:17px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:12px;
  750. }
  751. #u32218 {
  752. border-width:0px;
  753. position:absolute;
  754. left:151px;
  755. top:817px;
  756. width:37px;
  757. height:17px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u32218 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u32218_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u32219_div {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:375px;
  782. height:1033px;
  783. background:inherit;
  784. background-color:rgba(242, 242, 242, 1);
  785. box-sizing:border-box;
  786. border-width:1px;
  787. border-style:solid;
  788. border-color:rgba(242, 242, 242, 1);
  789. border-radius:26px;
  790. border-top-left-radius:0px;
  791. border-top-right-radius:0px;
  792. -moz-box-shadow:none;
  793. -webkit-box-shadow:none;
  794. box-shadow:none;
  795. }
  796. #u32219 {
  797. border-width:0px;
  798. position:absolute;
  799. left:29px;
  800. top:145px;
  801. width:375px;
  802. height:1033px;
  803. display:flex;
  804. }
  805. #u32219 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u32219_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u32220_div {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:109px;
  824. height:25px;
  825. background:inherit;
  826. background-color:rgba(255, 255, 255, 0);
  827. border:none;
  828. border-radius:0px;
  829. -moz-box-shadow:none;
  830. -webkit-box-shadow:none;
  831. box-shadow:none;
  832. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  833. font-weight:500;
  834. font-style:normal;
  835. font-size:18px;
  836. }
  837. #u32220 {
  838. border-width:0px;
  839. position:absolute;
  840. left:66px;
  841. top:74px;
  842. width:109px;
  843. height:25px;
  844. display:flex;
  845. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  846. font-weight:500;
  847. font-style:normal;
  848. font-size:18px;
  849. }
  850. #u32220 .text {
  851. position:absolute;
  852. align-self:flex-start;
  853. padding:0px 0px 0px 0px;
  854. box-sizing:border-box;
  855. width:100%;
  856. }
  857. #u32220_text {
  858. border-width:0px;
  859. white-space:nowrap;
  860. text-transform:none;
  861. }
  862. #u32221 {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:0px;
  868. height:0px;
  869. }
  870. #u32222_img {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:375px;
  876. height:166px;
  877. }
  878. #u32222 {
  879. border-width:0px;
  880. position:absolute;
  881. left:29px;
  882. top:145px;
  883. width:375px;
  884. height:166px;
  885. display:flex;
  886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  887. font-weight:400;
  888. font-style:normal;
  889. }
  890. #u32222 .text {
  891. position:absolute;
  892. align-self:center;
  893. padding:2px 2px 2px 2px;
  894. box-sizing:border-box;
  895. width:100%;
  896. }
  897. #u32222_text {
  898. border-width:0px;
  899. word-wrap:break-word;
  900. text-transform:none;
  901. }
  902. #u32223 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u32224_img {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:10px;
  916. height:10px;
  917. }
  918. #u32224 {
  919. border-width:0px;
  920. position:absolute;
  921. left:191px;
  922. top:252px;
  923. width:10px;
  924. height:10px;
  925. display:flex;
  926. }
  927. #u32224 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u32224_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. visibility:hidden;
  939. }
  940. #u32225_img {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:10px;
  946. height:10px;
  947. }
  948. #u32225 {
  949. border-width:0px;
  950. position:absolute;
  951. left:210px;
  952. top:252px;
  953. width:10px;
  954. height:10px;
  955. display:flex;
  956. }
  957. #u32225 .text {
  958. position:absolute;
  959. align-self:center;
  960. padding:2px 2px 2px 2px;
  961. box-sizing:border-box;
  962. width:100%;
  963. }
  964. #u32225_text {
  965. border-width:0px;
  966. word-wrap:break-word;
  967. text-transform:none;
  968. visibility:hidden;
  969. }
  970. #u32226_img {
  971. border-width:0px;
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:10px;
  976. height:10px;
  977. }
  978. #u32226 {
  979. border-width:0px;
  980. position:absolute;
  981. left:229px;
  982. top:252px;
  983. width:10px;
  984. height:10px;
  985. display:flex;
  986. }
  987. #u32226 .text {
  988. position:absolute;
  989. align-self:center;
  990. padding:2px 2px 2px 2px;
  991. box-sizing:border-box;
  992. width:100%;
  993. }
  994. #u32226_text {
  995. border-width:0px;
  996. word-wrap:break-word;
  997. text-transform:none;
  998. visibility:hidden;
  999. }
  1000. #u32227_img {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:0px;
  1004. top:0px;
  1005. width:13px;
  1006. height:19px;
  1007. }
  1008. #u32227 {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:44px;
  1012. top:77px;
  1013. width:13px;
  1014. height:19px;
  1015. display:flex;
  1016. }
  1017. #u32227 .text {
  1018. position:absolute;
  1019. align-self:center;
  1020. padding:2px 2px 2px 2px;
  1021. box-sizing:border-box;
  1022. width:100%;
  1023. }
  1024. #u32227_text {
  1025. border-width:0px;
  1026. word-wrap:break-word;
  1027. text-transform:none;
  1028. visibility:hidden;
  1029. }
  1030. #u32228_div {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:0px;
  1034. top:0px;
  1035. width:356px;
  1036. height:160px;
  1037. background:inherit;
  1038. background-color:rgba(255, 255, 255, 1);
  1039. border:none;
  1040. border-radius:4px;
  1041. -moz-box-shadow:none;
  1042. -webkit-box-shadow:none;
  1043. box-shadow:none;
  1044. }
  1045. #u32228 {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:39px;
  1049. top:285px;
  1050. width:356px;
  1051. height:160px;
  1052. display:flex;
  1053. }
  1054. #u32228 .text {
  1055. position:absolute;
  1056. align-self:center;
  1057. padding:2px 2px 2px 2px;
  1058. box-sizing:border-box;
  1059. width:100%;
  1060. }
  1061. #u32228_text {
  1062. border-width:0px;
  1063. word-wrap:break-word;
  1064. text-transform:none;
  1065. visibility:hidden;
  1066. }
  1067. #u32229_div {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:0px;
  1071. top:0px;
  1072. width:73px;
  1073. height:25px;
  1074. background:inherit;
  1075. background-color:rgba(255, 255, 255, 0);
  1076. border:none;
  1077. border-radius:0px;
  1078. -moz-box-shadow:none;
  1079. -webkit-box-shadow:none;
  1080. box-shadow:none;
  1081. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1082. font-weight:500;
  1083. font-style:normal;
  1084. font-size:18px;
  1085. }
  1086. #u32229 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:57px;
  1090. top:303px;
  1091. width:73px;
  1092. height:25px;
  1093. display:flex;
  1094. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1095. font-weight:500;
  1096. font-style:normal;
  1097. font-size:18px;
  1098. }
  1099. #u32229 .text {
  1100. position:absolute;
  1101. align-self:flex-start;
  1102. padding:0px 0px 0px 0px;
  1103. box-sizing:border-box;
  1104. width:100%;
  1105. }
  1106. #u32229_text {
  1107. border-width:0px;
  1108. white-space:nowrap;
  1109. text-transform:none;
  1110. }
  1111. #u32230_div {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:29px;
  1117. height:21px;
  1118. background:inherit;
  1119. background-color:rgba(250, 205, 145, 1);
  1120. border:none;
  1121. border-radius:4px;
  1122. -moz-box-shadow:none;
  1123. -webkit-box-shadow:none;
  1124. box-shadow:none;
  1125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1126. font-weight:400;
  1127. font-style:normal;
  1128. font-size:12px;
  1129. color:#7B4D12;
  1130. }
  1131. #u32230 {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:57px;
  1135. top:333px;
  1136. width:29px;
  1137. height:21px;
  1138. display:flex;
  1139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:12px;
  1143. color:#7B4D12;
  1144. }
  1145. #u32230 .text {
  1146. position:absolute;
  1147. align-self:flex-start;
  1148. padding:2px 2px 2px 2px;
  1149. box-sizing:border-box;
  1150. width:100%;
  1151. }
  1152. #u32230_text {
  1153. border-width:0px;
  1154. white-space:nowrap;
  1155. text-transform:none;
  1156. }
  1157. #u32231 {
  1158. border-width:0px;
  1159. position:absolute;
  1160. left:0px;
  1161. top:0px;
  1162. width:0px;
  1163. height:0px;
  1164. }
  1165. #u32232_div {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:0px;
  1169. top:0px;
  1170. width:120px;
  1171. height:30px;
  1172. background:inherit;
  1173. background-color:rgba(242, 242, 242, 1);
  1174. border:none;
  1175. border-radius:19px;
  1176. -moz-box-shadow:none;
  1177. -webkit-box-shadow:none;
  1178. box-shadow:none;
  1179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1180. font-weight:400;
  1181. font-style:normal;
  1182. }
  1183. #u32232 {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:265px;
  1187. top:295px;
  1188. width:120px;
  1189. height:30px;
  1190. display:flex;
  1191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1192. font-weight:400;
  1193. font-style:normal;
  1194. }
  1195. #u32232 .text {
  1196. position:absolute;
  1197. align-self:flex-start;
  1198. padding:0px 0px 0px 0px;
  1199. box-sizing:border-box;
  1200. width:100%;
  1201. }
  1202. #u32232_text {
  1203. border-width:0px;
  1204. word-wrap:break-word;
  1205. text-transform:none;
  1206. visibility:hidden;
  1207. }
  1208. #u32233_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:11px;
  1214. height:17px;
  1215. }
  1216. #u32233 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:274px;
  1220. top:302px;
  1221. width:11px;
  1222. height:17px;
  1223. display:flex;
  1224. }
  1225. #u32233 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u32233_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u32234_div {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:85px;
  1244. height:16px;
  1245. background:inherit;
  1246. background-color:rgba(255, 255, 255, 0);
  1247. border:none;
  1248. border-radius:0px;
  1249. -moz-box-shadow:none;
  1250. -webkit-box-shadow:none;
  1251. box-shadow:none;
  1252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1253. font-weight:400;
  1254. font-style:normal;
  1255. font-size:11px;
  1256. }
  1257. #u32234 {
  1258. border-width:0px;
  1259. position:absolute;
  1260. left:291px;
  1261. top:302px;
  1262. width:85px;
  1263. height:16px;
  1264. display:flex;
  1265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1266. font-weight:400;
  1267. font-style:normal;
  1268. font-size:11px;
  1269. }
  1270. #u32234 .text {
  1271. position:absolute;
  1272. align-self:flex-start;
  1273. padding:0px 0px 0px 0px;
  1274. box-sizing:border-box;
  1275. width:100%;
  1276. }
  1277. #u32234_text {
  1278. border-width:0px;
  1279. white-space:nowrap;
  1280. text-transform:none;
  1281. }
  1282. #u32235_div {
  1283. border-width:0px;
  1284. position:absolute;
  1285. left:0px;
  1286. top:0px;
  1287. width:29px;
  1288. height:21px;
  1289. background:inherit;
  1290. background-color:rgba(250, 205, 145, 1);
  1291. border:none;
  1292. border-radius:4px;
  1293. -moz-box-shadow:none;
  1294. -webkit-box-shadow:none;
  1295. box-shadow:none;
  1296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1297. font-weight:400;
  1298. font-style:normal;
  1299. font-size:12px;
  1300. color:#7B4D12;
  1301. }
  1302. #u32235 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:96px;
  1306. top:333px;
  1307. width:29px;
  1308. height:21px;
  1309. display:flex;
  1310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1311. font-weight:400;
  1312. font-style:normal;
  1313. font-size:12px;
  1314. color:#7B4D12;
  1315. }
  1316. #u32235 .text {
  1317. position:absolute;
  1318. align-self:flex-start;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u32235_text {
  1324. border-width:0px;
  1325. white-space:nowrap;
  1326. text-transform:none;
  1327. }
  1328. #u32236_div {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:53px;
  1334. height:21px;
  1335. background:inherit;
  1336. background-color:rgba(215, 215, 215, 1);
  1337. border:none;
  1338. border-radius:4px;
  1339. -moz-box-shadow:none;
  1340. -webkit-box-shadow:none;
  1341. box-shadow:none;
  1342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1343. font-weight:400;
  1344. font-style:normal;
  1345. font-size:12px;
  1346. color:#015478;
  1347. }
  1348. #u32236 {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:135px;
  1352. top:333px;
  1353. width:53px;
  1354. height:21px;
  1355. display:flex;
  1356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1357. font-weight:400;
  1358. font-style:normal;
  1359. font-size:12px;
  1360. color:#015478;
  1361. }
  1362. #u32236 .text {
  1363. position:absolute;
  1364. align-self:flex-start;
  1365. padding:2px 2px 2px 2px;
  1366. box-sizing:border-box;
  1367. width:100%;
  1368. }
  1369. #u32236_text {
  1370. border-width:0px;
  1371. white-space:nowrap;
  1372. text-transform:none;
  1373. }
  1374. #u32237_div {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:41px;
  1380. height:21px;
  1381. background:inherit;
  1382. background-color:rgba(215, 215, 215, 1);
  1383. border:none;
  1384. border-radius:4px;
  1385. -moz-box-shadow:none;
  1386. -webkit-box-shadow:none;
  1387. box-shadow:none;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. color:#015478;
  1393. }
  1394. #u32237 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:198px;
  1398. top:333px;
  1399. width:41px;
  1400. height:21px;
  1401. display:flex;
  1402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1403. font-weight:400;
  1404. font-style:normal;
  1405. font-size:12px;
  1406. color:#015478;
  1407. }
  1408. #u32237 .text {
  1409. position:absolute;
  1410. align-self:flex-start;
  1411. padding:2px 2px 2px 2px;
  1412. box-sizing:border-box;
  1413. width:100%;
  1414. }
  1415. #u32237_text {
  1416. border-width:0px;
  1417. white-space:nowrap;
  1418. text-transform:none;
  1419. }
  1420. #u32238_div {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:53px;
  1426. height:21px;
  1427. background:inherit;
  1428. background-color:rgba(215, 215, 215, 1);
  1429. border:none;
  1430. border-radius:4px;
  1431. -moz-box-shadow:none;
  1432. -webkit-box-shadow:none;
  1433. box-shadow:none;
  1434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1435. font-weight:400;
  1436. font-style:normal;
  1437. font-size:12px;
  1438. color:#015478;
  1439. }
  1440. #u32238 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:249px;
  1444. top:333px;
  1445. width:53px;
  1446. height:21px;
  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:#015478;
  1453. }
  1454. #u32238 .text {
  1455. position:absolute;
  1456. align-self:flex-start;
  1457. padding:2px 2px 2px 2px;
  1458. box-sizing:border-box;
  1459. width:100%;
  1460. }
  1461. #u32238_text {
  1462. border-width:0px;
  1463. white-space:nowrap;
  1464. text-transform:none;
  1465. }
  1466. #u32239_div {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:41px;
  1472. height:21px;
  1473. background:inherit;
  1474. background-color:rgba(215, 215, 215, 1);
  1475. border:none;
  1476. border-radius:4px;
  1477. -moz-box-shadow:none;
  1478. -webkit-box-shadow:none;
  1479. box-shadow:none;
  1480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1481. font-weight:400;
  1482. font-style:normal;
  1483. font-size:12px;
  1484. color:#015478;
  1485. }
  1486. #u32239 {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:312px;
  1490. top:333px;
  1491. width:41px;
  1492. height:21px;
  1493. display:flex;
  1494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1495. font-weight:400;
  1496. font-style:normal;
  1497. font-size:12px;
  1498. color:#015478;
  1499. }
  1500. #u32239 .text {
  1501. position:absolute;
  1502. align-self:flex-start;
  1503. padding:2px 2px 2px 2px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u32239_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u32240 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:0px;
  1518. height:0px;
  1519. }
  1520. #u32241_div {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:0px;
  1524. top:0px;
  1525. width:88px;
  1526. height:25px;
  1527. background:inherit;
  1528. background-color:rgba(255, 255, 255, 0);
  1529. border:none;
  1530. border-radius:0px;
  1531. -moz-box-shadow:none;
  1532. -webkit-box-shadow:none;
  1533. box-shadow:none;
  1534. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1535. font-style:normal;
  1536. }
  1537. #u32241 {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:118px;
  1541. top:374px;
  1542. width:88px;
  1543. height:25px;
  1544. display:flex;
  1545. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1546. font-style:normal;
  1547. }
  1548. #u32241 .text {
  1549. position:absolute;
  1550. align-self:flex-start;
  1551. padding:0px 0px 0px 0px;
  1552. box-sizing:border-box;
  1553. width:100%;
  1554. }
  1555. #u32241_text {
  1556. border-width:0px;
  1557. white-space:nowrap;
  1558. text-transform:none;
  1559. }
  1560. #u32242_div {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:0px;
  1564. top:0px;
  1565. width:61px;
  1566. height:17px;
  1567. background:inherit;
  1568. background-color:rgba(255, 255, 255, 0);
  1569. border:none;
  1570. border-radius:0px;
  1571. -moz-box-shadow:none;
  1572. -webkit-box-shadow:none;
  1573. box-shadow:none;
  1574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1575. font-weight:400;
  1576. font-style:normal;
  1577. font-size:12px;
  1578. color:#AAAAAA;
  1579. }
  1580. #u32242 {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:57px;
  1584. top:378px;
  1585. width:61px;
  1586. height:17px;
  1587. display:flex;
  1588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1589. font-weight:400;
  1590. font-style:normal;
  1591. font-size:12px;
  1592. color:#AAAAAA;
  1593. }
  1594. #u32242 .text {
  1595. position:absolute;
  1596. align-self:flex-start;
  1597. padding:0px 0px 0px 0px;
  1598. box-sizing:border-box;
  1599. width:100%;
  1600. }
  1601. #u32242_text {
  1602. border-width:0px;
  1603. white-space:nowrap;
  1604. text-transform:none;
  1605. }
  1606. #u32243 {
  1607. border-width:0px;
  1608. position:absolute;
  1609. left:0px;
  1610. top:0px;
  1611. width:0px;
  1612. height:0px;
  1613. }
  1614. #u32244_div {
  1615. border-width:0px;
  1616. position:absolute;
  1617. left:0px;
  1618. top:0px;
  1619. width:82px;
  1620. height:20px;
  1621. background:inherit;
  1622. background-color:rgba(255, 255, 255, 0);
  1623. border:none;
  1624. border-radius:0px;
  1625. -moz-box-shadow:none;
  1626. -webkit-box-shadow:none;
  1627. box-shadow:none;
  1628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1629. font-weight:400;
  1630. font-style:normal;
  1631. }
  1632. #u32244 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:118px;
  1636. top:405px;
  1637. width:82px;
  1638. height:20px;
  1639. display:flex;
  1640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1641. font-weight:400;
  1642. font-style:normal;
  1643. }
  1644. #u32244 .text {
  1645. position:absolute;
  1646. align-self:flex-start;
  1647. padding:0px 0px 0px 0px;
  1648. box-sizing:border-box;
  1649. width:100%;
  1650. }
  1651. #u32244_text {
  1652. border-width:0px;
  1653. white-space:nowrap;
  1654. text-transform:none;
  1655. }
  1656. #u32245_div {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:0px;
  1660. top:0px;
  1661. width:61px;
  1662. height:17px;
  1663. background:inherit;
  1664. background-color:rgba(255, 255, 255, 0);
  1665. border:none;
  1666. border-radius:0px;
  1667. -moz-box-shadow:none;
  1668. -webkit-box-shadow:none;
  1669. box-shadow:none;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:12px;
  1674. color:#AAAAAA;
  1675. }
  1676. #u32245 {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:57px;
  1680. top:407px;
  1681. width:61px;
  1682. height:17px;
  1683. display:flex;
  1684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1685. font-weight:400;
  1686. font-style:normal;
  1687. font-size:12px;
  1688. color:#AAAAAA;
  1689. }
  1690. #u32245 .text {
  1691. position:absolute;
  1692. align-self:flex-start;
  1693. padding:0px 0px 0px 0px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u32245_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u32246_div {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:0px;
  1706. top:0px;
  1707. width:356px;
  1708. height:150px;
  1709. background:inherit;
  1710. background-color:rgba(255, 255, 255, 1);
  1711. box-sizing:border-box;
  1712. border-width:1px;
  1713. border-style:solid;
  1714. border-color:rgba(242, 242, 242, 1);
  1715. border-radius:4px;
  1716. -moz-box-shadow:none;
  1717. -webkit-box-shadow:none;
  1718. box-shadow:none;
  1719. }
  1720. #u32246 {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:39px;
  1724. top:455px;
  1725. width:356px;
  1726. height:150px;
  1727. display:flex;
  1728. }
  1729. #u32246 .text {
  1730. position:absolute;
  1731. align-self:center;
  1732. padding:2px 2px 2px 2px;
  1733. box-sizing:border-box;
  1734. width:100%;
  1735. }
  1736. #u32246_text {
  1737. border-width:0px;
  1738. word-wrap:break-word;
  1739. text-transform:none;
  1740. visibility:hidden;
  1741. }
  1742. #u32247 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:0px;
  1748. height:0px;
  1749. }
  1750. #u32248_div {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:30px;
  1756. height:30px;
  1757. background:inherit;
  1758. background-color:rgba(255, 255, 255, 1);
  1759. box-sizing:border-box;
  1760. border-width:1px;
  1761. border-style:solid;
  1762. border-color:rgba(121, 121, 121, 1);
  1763. border-radius:4px;
  1764. -moz-box-shadow:none;
  1765. -webkit-box-shadow:none;
  1766. box-shadow:none;
  1767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. font-size:8px;
  1771. }
  1772. #u32248 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:157px;
  1776. top:469px;
  1777. width:30px;
  1778. height:30px;
  1779. display:flex;
  1780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:8px;
  1784. }
  1785. #u32248 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u32248_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. }
  1797. #u32249_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:49px;
  1803. height:17px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:12px;
  1815. }
  1816. #u32249 {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:148px;
  1820. top:504px;
  1821. width:49px;
  1822. height:17px;
  1823. display:flex;
  1824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. font-size:12px;
  1828. }
  1829. #u32249 .text {
  1830. position:absolute;
  1831. align-self:flex-start;
  1832. padding:0px 0px 0px 0px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u32249_text {
  1837. border-width:0px;
  1838. white-space:nowrap;
  1839. text-transform:none;
  1840. }
  1841. #u32250 {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:0px;
  1847. height:0px;
  1848. }
  1849. #u32251_div {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:30px;
  1855. height:30px;
  1856. background:inherit;
  1857. background-color:rgba(255, 255, 255, 1);
  1858. box-sizing:border-box;
  1859. border-width:1px;
  1860. border-style:solid;
  1861. border-color:rgba(121, 121, 121, 1);
  1862. border-radius:4px;
  1863. -moz-box-shadow:none;
  1864. -webkit-box-shadow:none;
  1865. box-shadow:none;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:8px;
  1870. }
  1871. #u32251 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:67px;
  1875. top:469px;
  1876. width:30px;
  1877. height:30px;
  1878. display:flex;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:8px;
  1883. }
  1884. #u32251 .text {
  1885. position:absolute;
  1886. align-self:center;
  1887. padding:2px 2px 2px 2px;
  1888. box-sizing:border-box;
  1889. width:100%;
  1890. }
  1891. #u32251_text {
  1892. border-width:0px;
  1893. word-wrap:break-word;
  1894. text-transform:none;
  1895. }
  1896. #u32252_div {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:49px;
  1902. height:17px;
  1903. background:inherit;
  1904. background-color:rgba(255, 255, 255, 0);
  1905. border:none;
  1906. border-radius:0px;
  1907. -moz-box-shadow:none;
  1908. -webkit-box-shadow:none;
  1909. box-shadow:none;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:12px;
  1914. }
  1915. #u32252 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:57px;
  1919. top:503px;
  1920. width:49px;
  1921. height:17px;
  1922. display:flex;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:12px;
  1927. }
  1928. #u32252 .text {
  1929. position:absolute;
  1930. align-self:flex-start;
  1931. padding:0px 0px 0px 0px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u32252_text {
  1936. border-width:0px;
  1937. white-space:nowrap;
  1938. text-transform:none;
  1939. }
  1940. #u32253 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:0px;
  1946. height:0px;
  1947. }
  1948. #u32254_div {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:30px;
  1954. height:30px;
  1955. background:inherit;
  1956. background-color:rgba(255, 255, 255, 1);
  1957. box-sizing:border-box;
  1958. border-width:1px;
  1959. border-style:solid;
  1960. border-color:rgba(121, 121, 121, 1);
  1961. border-radius:4px;
  1962. -moz-box-shadow:none;
  1963. -webkit-box-shadow:none;
  1964. box-shadow:none;
  1965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:8px;
  1969. }
  1970. #u32254 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:250px;
  1974. top:469px;
  1975. width:30px;
  1976. height:30px;
  1977. display:flex;
  1978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1979. font-weight:400;
  1980. font-style:normal;
  1981. font-size:8px;
  1982. }
  1983. #u32254 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:2px 2px 2px 2px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u32254_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. }
  1995. #u32255_div {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:49px;
  2001. height:17px;
  2002. background:inherit;
  2003. background-color:rgba(255, 255, 255, 0);
  2004. border:none;
  2005. border-radius:0px;
  2006. -moz-box-shadow:none;
  2007. -webkit-box-shadow:none;
  2008. box-shadow:none;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. }
  2014. #u32255 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:240px;
  2018. top:503px;
  2019. width:49px;
  2020. height:17px;
  2021. display:flex;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. font-size:12px;
  2026. }
  2027. #u32255 .text {
  2028. position:absolute;
  2029. align-self:flex-start;
  2030. padding:0px 0px 0px 0px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u32255_text {
  2035. border-width:0px;
  2036. white-space:nowrap;
  2037. text-transform:none;
  2038. }
  2039. #u32256 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:0px;
  2045. height:0px;
  2046. }
  2047. #u32257_div {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:30px;
  2053. height:30px;
  2054. background:inherit;
  2055. background-color:rgba(255, 255, 255, 1);
  2056. box-sizing:border-box;
  2057. border-width:1px;
  2058. border-style:solid;
  2059. border-color:rgba(121, 121, 121, 1);
  2060. border-radius:4px;
  2061. -moz-box-shadow:none;
  2062. -webkit-box-shadow:none;
  2063. box-shadow:none;
  2064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. font-size:8px;
  2068. }
  2069. #u32257 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:336px;
  2073. top:470px;
  2074. width:30px;
  2075. height:30px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:8px;
  2081. }
  2082. #u32257 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:2px 2px 2px 2px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u32257_text {
  2090. border-width:0px;
  2091. word-wrap:break-word;
  2092. text-transform:none;
  2093. }
  2094. #u32258_div {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:41px;
  2100. height:17px;
  2101. background:inherit;
  2102. background-color:rgba(255, 255, 255, 0);
  2103. border:none;
  2104. border-radius:0px;
  2105. -moz-box-shadow:none;
  2106. -webkit-box-shadow:none;
  2107. box-shadow:none;
  2108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2109. font-weight:400;
  2110. font-style:normal;
  2111. font-size:12px;
  2112. }
  2113. #u32258 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:331px;
  2117. top:504px;
  2118. width:41px;
  2119. height:17px;
  2120. display:flex;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:12px;
  2125. }
  2126. #u32258 .text {
  2127. position:absolute;
  2128. align-self:flex-start;
  2129. padding:0px 0px 0px 0px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u32258_text {
  2134. border-width:0px;
  2135. white-space:nowrap;
  2136. text-transform:none;
  2137. }
  2138. #u32259 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:0px;
  2144. height:0px;
  2145. }
  2146. #u32260_div {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:356px;
  2152. height:283px;
  2153. background:inherit;
  2154. background-color:rgba(255, 255, 255, 1);
  2155. box-sizing:border-box;
  2156. border-width:1px;
  2157. border-style:solid;
  2158. border-color:rgba(242, 242, 242, 1);
  2159. border-radius:4px;
  2160. -moz-box-shadow:none;
  2161. -webkit-box-shadow:none;
  2162. box-shadow:none;
  2163. }
  2164. #u32260 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:39px;
  2168. top:845px;
  2169. width:356px;
  2170. height:283px;
  2171. display:flex;
  2172. }
  2173. #u32260 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 2px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u32260_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. visibility:hidden;
  2185. }
  2186. #u32261_div {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:57px;
  2192. height:40px;
  2193. background:inherit;
  2194. background-color:rgba(255, 255, 255, 0);
  2195. border:none;
  2196. border-radius:0px;
  2197. -moz-box-shadow:none;
  2198. -webkit-box-shadow:none;
  2199. box-shadow:none;
  2200. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2201. font-weight:500;
  2202. font-style:normal;
  2203. }
  2204. #u32261 {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:55px;
  2208. top:845px;
  2209. width:57px;
  2210. height:40px;
  2211. display:flex;
  2212. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2213. font-weight:500;
  2214. font-style:normal;
  2215. }
  2216. #u32261 .text {
  2217. position:absolute;
  2218. align-self:center;
  2219. padding:0px 0px 0px 0px;
  2220. box-sizing:border-box;
  2221. width:100%;
  2222. }
  2223. #u32261_text {
  2224. border-width:0px;
  2225. white-space:nowrap;
  2226. text-transform:none;
  2227. }
  2228. #u32262 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:0px;
  2234. height:0px;
  2235. }
  2236. #u32263_div {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:320px;
  2242. height:108px;
  2243. background:inherit;
  2244. background-color:rgba(242, 242, 242, 1);
  2245. border:none;
  2246. border-radius:4px;
  2247. -moz-box-shadow:none;
  2248. -webkit-box-shadow:none;
  2249. box-shadow:none;
  2250. }
  2251. #u32263 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:55px;
  2255. top:885px;
  2256. width:320px;
  2257. height:108px;
  2258. display:flex;
  2259. }
  2260. #u32263 .text {
  2261. position:absolute;
  2262. align-self:center;
  2263. padding:2px 2px 2px 2px;
  2264. box-sizing:border-box;
  2265. width:100%;
  2266. }
  2267. #u32263_text {
  2268. border-width:0px;
  2269. word-wrap:break-word;
  2270. text-transform:none;
  2271. visibility:hidden;
  2272. }
  2273. #u32264_img {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:88px;
  2279. height:88px;
  2280. }
  2281. #u32264 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:69px;
  2285. top:895px;
  2286. width:88px;
  2287. height:88px;
  2288. display:flex;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. }
  2293. #u32264 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 2px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u32264_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. }
  2305. #u32265_div {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:37px;
  2311. height:25px;
  2312. background:inherit;
  2313. background-color:rgba(255, 255, 255, 0);
  2314. border:none;
  2315. border-radius:0px;
  2316. -moz-box-shadow:none;
  2317. -webkit-box-shadow:none;
  2318. box-shadow:none;
  2319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. font-size:18px;
  2323. }
  2324. #u32265 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:178px;
  2328. top:895px;
  2329. width:37px;
  2330. height:25px;
  2331. display:flex;
  2332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:18px;
  2336. }
  2337. #u32265 .text {
  2338. position:absolute;
  2339. align-self:flex-start;
  2340. padding:0px 0px 0px 0px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u32265_text {
  2345. border-width:0px;
  2346. white-space:nowrap;
  2347. text-transform:none;
  2348. }
  2349. #u32266_div {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:85px;
  2355. height:17px;
  2356. background:inherit;
  2357. background-color:rgba(255, 255, 255, 0);
  2358. border:none;
  2359. border-radius:0px;
  2360. -moz-box-shadow:none;
  2361. -webkit-box-shadow:none;
  2362. box-shadow:none;
  2363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:12px;
  2367. }
  2368. #u32266 {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:178px;
  2372. top:925px;
  2373. width:85px;
  2374. height:17px;
  2375. display:flex;
  2376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2377. font-weight:400;
  2378. font-style:normal;
  2379. font-size:12px;
  2380. }
  2381. #u32266 .text {
  2382. position:absolute;
  2383. align-self:flex-start;
  2384. padding:0px 0px 0px 0px;
  2385. box-sizing:border-box;
  2386. width:100%;
  2387. }
  2388. #u32266_text {
  2389. border-width:0px;
  2390. white-space:nowrap;
  2391. text-transform:none;
  2392. }
  2393. #u32267_div {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:80px;
  2399. height:27px;
  2400. background:inherit;
  2401. background-color:rgba(0, 191, 191, 1);
  2402. border:none;
  2403. border-radius:28px;
  2404. -moz-box-shadow:none;
  2405. -webkit-box-shadow:none;
  2406. box-shadow:none;
  2407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2408. font-weight:400;
  2409. font-style:normal;
  2410. font-size:14px;
  2411. color:#FFFFFF;
  2412. }
  2413. #u32267 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:178px;
  2417. top:952px;
  2418. width:80px;
  2419. height:27px;
  2420. display:flex;
  2421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2422. font-weight:400;
  2423. font-style:normal;
  2424. font-size:14px;
  2425. color:#FFFFFF;
  2426. }
  2427. #u32267 .text {
  2428. position:absolute;
  2429. align-self:center;
  2430. padding:2px 2px 2px 2px;
  2431. box-sizing:border-box;
  2432. width:100%;
  2433. }
  2434. #u32267_text {
  2435. border-width:0px;
  2436. word-wrap:break-word;
  2437. text-transform:none;
  2438. }
  2439. #u32268_div {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:80px;
  2445. height:27px;
  2446. background:inherit;
  2447. background-color:rgba(24, 144, 255, 1);
  2448. border:none;
  2449. border-radius:28px;
  2450. -moz-box-shadow:none;
  2451. -webkit-box-shadow:none;
  2452. box-shadow:none;
  2453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2454. font-weight:400;
  2455. font-style:normal;
  2456. font-size:14px;
  2457. color:#FFFFFF;
  2458. }
  2459. #u32268 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:268px;
  2463. top:952px;
  2464. width:80px;
  2465. height:27px;
  2466. display:flex;
  2467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2468. font-weight:400;
  2469. font-style:normal;
  2470. font-size:14px;
  2471. color:#FFFFFF;
  2472. }
  2473. #u32268 .text {
  2474. position:absolute;
  2475. align-self:center;
  2476. padding:2px 2px 2px 2px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u32268_text {
  2481. border-width:0px;
  2482. word-wrap:break-word;
  2483. text-transform:none;
  2484. }
  2485. #u32269 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:0px;
  2491. height:0px;
  2492. }
  2493. #u32270_div {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:320px;
  2499. height:108px;
  2500. background:inherit;
  2501. background-color:rgba(242, 242, 242, 1);
  2502. border:none;
  2503. border-radius:4px;
  2504. -moz-box-shadow:none;
  2505. -webkit-box-shadow:none;
  2506. box-shadow:none;
  2507. }
  2508. #u32270 {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:55px;
  2512. top:1003px;
  2513. width:320px;
  2514. height:108px;
  2515. display:flex;
  2516. }
  2517. #u32270 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:2px 2px 2px 2px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u32270_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. visibility:hidden;
  2529. }
  2530. #u32271_img {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:88px;
  2536. height:88px;
  2537. }
  2538. #u32271 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:69px;
  2542. top:1013px;
  2543. width:88px;
  2544. height:88px;
  2545. display:flex;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. }
  2550. #u32271 .text {
  2551. position:absolute;
  2552. align-self:center;
  2553. padding:2px 2px 2px 2px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u32271_text {
  2558. border-width:0px;
  2559. word-wrap:break-word;
  2560. text-transform:none;
  2561. }
  2562. #u32272_div {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:37px;
  2568. height:25px;
  2569. background:inherit;
  2570. background-color:rgba(255, 255, 255, 0);
  2571. border:none;
  2572. border-radius:0px;
  2573. -moz-box-shadow:none;
  2574. -webkit-box-shadow:none;
  2575. box-shadow:none;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:18px;
  2580. }
  2581. #u32272 {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:178px;
  2585. top:1013px;
  2586. width:37px;
  2587. height:25px;
  2588. display:flex;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:18px;
  2593. }
  2594. #u32272 .text {
  2595. position:absolute;
  2596. align-self:flex-start;
  2597. padding:0px 0px 0px 0px;
  2598. box-sizing:border-box;
  2599. width:100%;
  2600. }
  2601. #u32272_text {
  2602. border-width:0px;
  2603. white-space:nowrap;
  2604. text-transform:none;
  2605. }
  2606. #u32273_div {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:85px;
  2612. height:17px;
  2613. background:inherit;
  2614. background-color:rgba(255, 255, 255, 0);
  2615. border:none;
  2616. border-radius:0px;
  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. }
  2625. #u32273 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:178px;
  2629. top:1043px;
  2630. width:85px;
  2631. height:17px;
  2632. display:flex;
  2633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2634. font-weight:400;
  2635. font-style:normal;
  2636. font-size:12px;
  2637. }
  2638. #u32273 .text {
  2639. position:absolute;
  2640. align-self:flex-start;
  2641. padding:0px 0px 0px 0px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u32273_text {
  2646. border-width:0px;
  2647. white-space:nowrap;
  2648. text-transform:none;
  2649. }
  2650. #u32274_div {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:80px;
  2656. height:27px;
  2657. background:inherit;
  2658. background-color:rgba(0, 191, 191, 1);
  2659. border:none;
  2660. border-radius:28px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2665. font-weight:400;
  2666. font-style:normal;
  2667. font-size:14px;
  2668. color:#FFFFFF;
  2669. }
  2670. #u32274 {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:178px;
  2674. top:1070px;
  2675. width:80px;
  2676. height:27px;
  2677. display:flex;
  2678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2679. font-weight:400;
  2680. font-style:normal;
  2681. font-size:14px;
  2682. color:#FFFFFF;
  2683. }
  2684. #u32274 .text {
  2685. position:absolute;
  2686. align-self:center;
  2687. padding:2px 2px 2px 2px;
  2688. box-sizing:border-box;
  2689. width:100%;
  2690. }
  2691. #u32274_text {
  2692. border-width:0px;
  2693. word-wrap:break-word;
  2694. text-transform:none;
  2695. }
  2696. #u32275_div {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:80px;
  2702. height:27px;
  2703. background:inherit;
  2704. background-color:rgba(24, 144, 255, 1);
  2705. border:none;
  2706. border-radius:28px;
  2707. -moz-box-shadow:none;
  2708. -webkit-box-shadow:none;
  2709. box-shadow:none;
  2710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:14px;
  2714. color:#FFFFFF;
  2715. }
  2716. #u32275 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:268px;
  2720. top:1070px;
  2721. width:80px;
  2722. height:27px;
  2723. display:flex;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:14px;
  2728. color:#FFFFFF;
  2729. }
  2730. #u32275 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:2px 2px 2px 2px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u32275_text {
  2738. border-width:0px;
  2739. word-wrap:break-word;
  2740. text-transform:none;
  2741. }
  2742. #u32276 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:0px;
  2748. height:0px;
  2749. }
  2750. #u32277_div {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:356px;
  2756. height:220px;
  2757. background:inherit;
  2758. background-color:rgba(255, 255, 255, 1);
  2759. box-sizing:border-box;
  2760. border-width:1px;
  2761. border-style:solid;
  2762. border-color:rgba(242, 242, 242, 1);
  2763. border-radius:4px;
  2764. -moz-box-shadow:none;
  2765. -webkit-box-shadow:none;
  2766. box-shadow:none;
  2767. }
  2768. #u32277 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:39px;
  2772. top:615px;
  2773. width:356px;
  2774. height:220px;
  2775. display:flex;
  2776. }
  2777. #u32277 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u32277_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. visibility:hidden;
  2789. }
  2790. #u32278_div {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:57px;
  2796. height:40px;
  2797. background:inherit;
  2798. background-color:rgba(255, 255, 255, 0);
  2799. border:none;
  2800. border-radius:0px;
  2801. -moz-box-shadow:none;
  2802. -webkit-box-shadow:none;
  2803. box-shadow:none;
  2804. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2805. font-weight:500;
  2806. font-style:normal;
  2807. }
  2808. #u32278 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:55px;
  2812. top:615px;
  2813. width:57px;
  2814. height:40px;
  2815. display:flex;
  2816. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2817. font-weight:500;
  2818. font-style:normal;
  2819. }
  2820. #u32278 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:0px 0px 0px 0px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u32278_text {
  2828. border-width:0px;
  2829. white-space:nowrap;
  2830. text-transform:none;
  2831. }
  2832. #u32279 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:55px;
  2836. top:655px;
  2837. width:326px;
  2838. height:173px;
  2839. }
  2840. #u32279_state0 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:326px;
  2846. height:173px;
  2847. overflow:auto;
  2848. -webkit-overflow-scrolling:touch;
  2849. -ms-overflow-y:hidden;
  2850. overflow-y:hidden;
  2851. background-image:none;
  2852. border:none;
  2853. border-radius:0px;
  2854. -moz-box-shadow:none;
  2855. -webkit-box-shadow:none;
  2856. box-shadow:none;
  2857. }
  2858. #u32279_state0_content {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:1px;
  2864. height:1px;
  2865. }
  2866. #u32280 {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:0px;
  2872. height:0px;
  2873. }
  2874. #u32281_div {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:0px;
  2878. top:0px;
  2879. width:120px;
  2880. height:160px;
  2881. background:inherit;
  2882. background-color:rgba(242, 242, 242, 1);
  2883. border:none;
  2884. border-radius:4px;
  2885. -moz-box-shadow:none;
  2886. -webkit-box-shadow:none;
  2887. box-shadow:none;
  2888. }
  2889. #u32281 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:120px;
  2895. height:160px;
  2896. display:flex;
  2897. }
  2898. #u32281 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 2px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u32281_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u32282_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:115px;
  2917. height:128px;
  2918. }
  2919. #u32282 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:2px;
  2923. top:0px;
  2924. width:115px;
  2925. height:128px;
  2926. display:flex;
  2927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. }
  2931. #u32282 .text {
  2932. position:absolute;
  2933. align-self:center;
  2934. padding:2px 2px 2px 2px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u32282_text {
  2939. border-width:0px;
  2940. word-wrap:break-word;
  2941. text-transform:none;
  2942. }
  2943. #u32283_div {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:97px;
  2949. height:17px;
  2950. background:inherit;
  2951. background-color:rgba(255, 255, 255, 0);
  2952. border:none;
  2953. border-radius:0px;
  2954. -moz-box-shadow:none;
  2955. -webkit-box-shadow:none;
  2956. box-shadow:none;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:12px;
  2961. }
  2962. #u32283 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:9px;
  2966. top:136px;
  2967. width:97px;
  2968. height:17px;
  2969. display:flex;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:12px;
  2974. }
  2975. #u32283 .text {
  2976. position:absolute;
  2977. align-self:flex-start;
  2978. padding:0px 0px 0px 0px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u32283_text {
  2983. border-width:0px;
  2984. white-space:nowrap;
  2985. text-transform:none;
  2986. }
  2987. #u32284_div {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:21px;
  2993. height:15px;
  2994. background:inherit;
  2995. background-color:rgba(215, 215, 215, 1);
  2996. border:none;
  2997. border-right:0px;
  2998. border-radius:28px;
  2999. border-top-right-radius:0px;
  3000. border-bottom-right-radius:0px;
  3001. -moz-box-shadow:none;
  3002. -webkit-box-shadow:none;
  3003. box-shadow:none;
  3004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3005. font-weight:400;
  3006. font-style:normal;
  3007. font-size:8px;
  3008. color:#7F7F7F;
  3009. }
  3010. #u32284 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:99px;
  3014. top:0px;
  3015. width:21px;
  3016. height:15px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:8px;
  3022. color:#7F7F7F;
  3023. }
  3024. #u32284 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 2px 2px 2px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u32284_text {
  3032. border-width:0px;
  3033. white-space:nowrap;
  3034. text-transform:none;
  3035. }
  3036. #u32285 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:0px;
  3042. height:0px;
  3043. }
  3044. #u32286_div {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:120px;
  3050. height:160px;
  3051. background:inherit;
  3052. background-color:rgba(242, 242, 242, 1);
  3053. border:none;
  3054. border-radius:4px;
  3055. -moz-box-shadow:none;
  3056. -webkit-box-shadow:none;
  3057. box-shadow:none;
  3058. }
  3059. #u32286 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:130px;
  3063. top:0px;
  3064. width:120px;
  3065. height:160px;
  3066. display:flex;
  3067. }
  3068. #u32286 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:2px 2px 2px 2px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u32286_text {
  3076. border-width:0px;
  3077. word-wrap:break-word;
  3078. text-transform:none;
  3079. visibility:hidden;
  3080. }
  3081. #u32287_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:115px;
  3087. height:128px;
  3088. }
  3089. #u32287 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:132px;
  3093. top:0px;
  3094. width:115px;
  3095. height:128px;
  3096. display:flex;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. }
  3101. #u32287 .text {
  3102. position:absolute;
  3103. align-self:center;
  3104. padding:2px 2px 2px 2px;
  3105. box-sizing:border-box;
  3106. width:100%;
  3107. }
  3108. #u32287_text {
  3109. border-width:0px;
  3110. word-wrap:break-word;
  3111. text-transform:none;
  3112. }
  3113. #u32288_div {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:0px;
  3117. top:0px;
  3118. width:97px;
  3119. height:17px;
  3120. background:inherit;
  3121. background-color:rgba(255, 255, 255, 0);
  3122. border:none;
  3123. border-radius:0px;
  3124. -moz-box-shadow:none;
  3125. -webkit-box-shadow:none;
  3126. box-shadow:none;
  3127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3128. font-weight:400;
  3129. font-style:normal;
  3130. font-size:12px;
  3131. }
  3132. #u32288 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:139px;
  3136. top:136px;
  3137. width:97px;
  3138. height:17px;
  3139. display:flex;
  3140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:12px;
  3144. }
  3145. #u32288 .text {
  3146. position:absolute;
  3147. align-self:flex-start;
  3148. padding:0px 0px 0px 0px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u32288_text {
  3153. border-width:0px;
  3154. white-space:nowrap;
  3155. text-transform:none;
  3156. }
  3157. #u32289_div {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:21px;
  3163. height:15px;
  3164. background:inherit;
  3165. background-color:rgba(215, 215, 215, 1);
  3166. border:none;
  3167. border-right:0px;
  3168. border-radius:28px;
  3169. border-top-right-radius:0px;
  3170. border-bottom-right-radius:0px;
  3171. -moz-box-shadow:none;
  3172. -webkit-box-shadow:none;
  3173. box-shadow:none;
  3174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:8px;
  3178. color:#7F7F7F;
  3179. }
  3180. #u32289 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:229px;
  3184. top:0px;
  3185. width:21px;
  3186. height:15px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:8px;
  3192. color:#7F7F7F;
  3193. }
  3194. #u32289 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:2px 2px 2px 2px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u32289_text {
  3202. border-width:0px;
  3203. white-space:nowrap;
  3204. text-transform:none;
  3205. }
  3206. #u32290 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:0px;
  3212. height:0px;
  3213. }
  3214. #u32291_div {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:120px;
  3220. height:160px;
  3221. background:inherit;
  3222. background-color:rgba(242, 242, 242, 1);
  3223. border:none;
  3224. border-radius:4px;
  3225. -moz-box-shadow:none;
  3226. -webkit-box-shadow:none;
  3227. box-shadow:none;
  3228. }
  3229. #u32291 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:260px;
  3233. top:0px;
  3234. width:120px;
  3235. height:160px;
  3236. display:flex;
  3237. }
  3238. #u32291 .text {
  3239. position:absolute;
  3240. align-self:center;
  3241. padding:2px 2px 2px 2px;
  3242. box-sizing:border-box;
  3243. width:100%;
  3244. }
  3245. #u32291_text {
  3246. border-width:0px;
  3247. word-wrap:break-word;
  3248. text-transform:none;
  3249. visibility:hidden;
  3250. }
  3251. #u32292_img {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:115px;
  3257. height:128px;
  3258. }
  3259. #u32292 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:262px;
  3263. top:0px;
  3264. width:115px;
  3265. height:128px;
  3266. display:flex;
  3267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. }
  3271. #u32292 .text {
  3272. position:absolute;
  3273. align-self:center;
  3274. padding:2px 2px 2px 2px;
  3275. box-sizing:border-box;
  3276. width:100%;
  3277. }
  3278. #u32292_text {
  3279. border-width:0px;
  3280. word-wrap:break-word;
  3281. text-transform:none;
  3282. }
  3283. #u32293_div {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:0px;
  3287. top:0px;
  3288. width:97px;
  3289. height:17px;
  3290. background:inherit;
  3291. background-color:rgba(255, 255, 255, 0);
  3292. border:none;
  3293. border-radius:0px;
  3294. -moz-box-shadow:none;
  3295. -webkit-box-shadow:none;
  3296. box-shadow:none;
  3297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3298. font-weight:400;
  3299. font-style:normal;
  3300. font-size:12px;
  3301. }
  3302. #u32293 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:269px;
  3306. top:136px;
  3307. width:97px;
  3308. height:17px;
  3309. display:flex;
  3310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3311. font-weight:400;
  3312. font-style:normal;
  3313. font-size:12px;
  3314. }
  3315. #u32293 .text {
  3316. position:absolute;
  3317. align-self:flex-start;
  3318. padding:0px 0px 0px 0px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u32293_text {
  3323. border-width:0px;
  3324. white-space:nowrap;
  3325. text-transform:none;
  3326. }
  3327. #u32294_div {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:21px;
  3333. height:15px;
  3334. background:inherit;
  3335. background-color:rgba(215, 215, 215, 1);
  3336. border:none;
  3337. border-right:0px;
  3338. border-radius:28px;
  3339. border-top-right-radius:0px;
  3340. border-bottom-right-radius:0px;
  3341. -moz-box-shadow:none;
  3342. -webkit-box-shadow:none;
  3343. box-shadow:none;
  3344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3345. font-weight:400;
  3346. font-style:normal;
  3347. font-size:8px;
  3348. color:#7F7F7F;
  3349. }
  3350. #u32294 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:359px;
  3354. top:0px;
  3355. width:21px;
  3356. height:15px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:8px;
  3362. color:#7F7F7F;
  3363. }
  3364. #u32294 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 2px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u32294_text {
  3372. border-width:0px;
  3373. white-space:nowrap;
  3374. text-transform:none;
  3375. }
  3376. #u32295 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:0px;
  3380. top:0px;
  3381. width:0px;
  3382. height:0px;
  3383. }
  3384. #u32296_div {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:120px;
  3390. height:160px;
  3391. background:inherit;
  3392. background-color:rgba(242, 242, 242, 1);
  3393. border:none;
  3394. border-radius:4px;
  3395. -moz-box-shadow:none;
  3396. -webkit-box-shadow:none;
  3397. box-shadow:none;
  3398. }
  3399. #u32296 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:390px;
  3403. top:0px;
  3404. width:120px;
  3405. height:160px;
  3406. display:flex;
  3407. }
  3408. #u32296 .text {
  3409. position:absolute;
  3410. align-self:center;
  3411. padding:2px 2px 2px 2px;
  3412. box-sizing:border-box;
  3413. width:100%;
  3414. }
  3415. #u32296_text {
  3416. border-width:0px;
  3417. word-wrap:break-word;
  3418. text-transform:none;
  3419. visibility:hidden;
  3420. }
  3421. #u32297_img {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:115px;
  3427. height:128px;
  3428. }
  3429. #u32297 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:392px;
  3433. top:0px;
  3434. width:115px;
  3435. height:128px;
  3436. display:flex;
  3437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3438. font-weight:400;
  3439. font-style:normal;
  3440. }
  3441. #u32297 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 2px 2px 2px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u32297_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. }
  3453. #u32298_div {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:97px;
  3459. height:17px;
  3460. background:inherit;
  3461. background-color:rgba(255, 255, 255, 0);
  3462. border:none;
  3463. border-radius:0px;
  3464. -moz-box-shadow:none;
  3465. -webkit-box-shadow:none;
  3466. box-shadow:none;
  3467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3468. font-weight:400;
  3469. font-style:normal;
  3470. font-size:12px;
  3471. }
  3472. #u32298 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:399px;
  3476. top:136px;
  3477. width:97px;
  3478. height:17px;
  3479. display:flex;
  3480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. font-size:12px;
  3484. }
  3485. #u32298 .text {
  3486. position:absolute;
  3487. align-self:flex-start;
  3488. padding:0px 0px 0px 0px;
  3489. box-sizing:border-box;
  3490. width:100%;
  3491. }
  3492. #u32298_text {
  3493. border-width:0px;
  3494. white-space:nowrap;
  3495. text-transform:none;
  3496. }
  3497. #u32299_div {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:21px;
  3503. height:15px;
  3504. background:inherit;
  3505. background-color:rgba(215, 215, 215, 1);
  3506. border:none;
  3507. border-right:0px;
  3508. border-radius:28px;
  3509. border-top-right-radius:0px;
  3510. border-bottom-right-radius:0px;
  3511. -moz-box-shadow:none;
  3512. -webkit-box-shadow:none;
  3513. box-shadow:none;
  3514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3515. font-weight:400;
  3516. font-style:normal;
  3517. font-size:8px;
  3518. color:#7F7F7F;
  3519. }
  3520. #u32299 {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:489px;
  3524. top:0px;
  3525. width:21px;
  3526. height:15px;
  3527. display:flex;
  3528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3529. font-weight:400;
  3530. font-style:normal;
  3531. font-size:8px;
  3532. color:#7F7F7F;
  3533. }
  3534. #u32299 .text {
  3535. position:absolute;
  3536. align-self:center;
  3537. padding:2px 2px 2px 2px;
  3538. box-sizing:border-box;
  3539. width:100%;
  3540. }
  3541. #u32299_text {
  3542. border-width:0px;
  3543. white-space:nowrap;
  3544. text-transform:none;
  3545. }
  3546. #u32300_div {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:50px;
  3552. height:40px;
  3553. background:inherit;
  3554. background-color:rgba(255, 255, 255, 0);
  3555. border:none;
  3556. border-radius:0px;
  3557. -moz-box-shadow:none;
  3558. -webkit-box-shadow:none;
  3559. box-shadow:none;
  3560. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3561. font-weight:500;
  3562. font-style:normal;
  3563. font-size:10px;
  3564. }
  3565. #u32300 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:331px;
  3569. top:615px;
  3570. width:50px;
  3571. height:40px;
  3572. display:flex;
  3573. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3574. font-weight:500;
  3575. font-style:normal;
  3576. font-size:10px;
  3577. }
  3578. #u32300 .text {
  3579. position:absolute;
  3580. align-self:center;
  3581. padding:0px 0px 0px 0px;
  3582. box-sizing:border-box;
  3583. width:100%;
  3584. }
  3585. #u32300_text {
  3586. border-width:0px;
  3587. white-space:nowrap;
  3588. text-transform:none;
  3589. }
  3590. #u32301 {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:0px;
  3596. height:0px;
  3597. }
  3598. #u32302_div {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:375px;
  3604. height:50px;
  3605. background:inherit;
  3606. background-color:rgba(255, 255, 255, 1);
  3607. box-sizing:border-box;
  3608. border-width:1px;
  3609. border-style:solid;
  3610. border-color:rgba(242, 242, 242, 1);
  3611. border-radius:26px;
  3612. border-top-left-radius:0px;
  3613. border-top-right-radius:0px;
  3614. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3615. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3616. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3617. }
  3618. #u32302 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:29px;
  3622. top:1128px;
  3623. width:375px;
  3624. height:50px;
  3625. display:flex;
  3626. }
  3627. #u32302 .text {
  3628. position:absolute;
  3629. align-self:center;
  3630. padding:2px 2px 2px 2px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u32302_text {
  3635. border-width:0px;
  3636. word-wrap:break-word;
  3637. text-transform:none;
  3638. visibility:hidden;
  3639. }
  3640. #u32303 {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:0px;
  3646. height:0px;
  3647. }
  3648. #u32304_div {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:75px;
  3654. height:50px;
  3655. background:inherit;
  3656. background-color:rgba(24, 144, 255, 1);
  3657. border:none;
  3658. border-right:0px;
  3659. border-radius:26px;
  3660. border-top-left-radius:0px;
  3661. border-top-right-radius:0px;
  3662. border-bottom-right-radius:0px;
  3663. -moz-box-shadow:none;
  3664. -webkit-box-shadow:none;
  3665. box-shadow:none;
  3666. }
  3667. #u32304 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:29px;
  3671. top:1128px;
  3672. width:75px;
  3673. height:50px;
  3674. display:flex;
  3675. }
  3676. #u32304 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:2px 2px 2px 2px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u32304_text {
  3684. border-width:0px;
  3685. word-wrap:break-word;
  3686. text-transform:none;
  3687. visibility:hidden;
  3688. }
  3689. #u32305 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:0px;
  3695. height:0px;
  3696. }
  3697. #u32306_img {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:24px;
  3703. height:24px;
  3704. }
  3705. #u32306 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:54px;
  3709. top:1132px;
  3710. width:24px;
  3711. height:24px;
  3712. display:flex;
  3713. font-size:8px;
  3714. }
  3715. #u32306 .text {
  3716. position:absolute;
  3717. align-self:center;
  3718. padding:2px 2px 2px 2px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u32306_text {
  3723. border-width:0px;
  3724. word-wrap:break-word;
  3725. text-transform:none;
  3726. }
  3727. #u32307_div {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:25px;
  3733. height:17px;
  3734. background:inherit;
  3735. background-color:rgba(255, 255, 255, 0);
  3736. border:none;
  3737. border-radius:0px;
  3738. -moz-box-shadow:none;
  3739. -webkit-box-shadow:none;
  3740. box-shadow:none;
  3741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:12px;
  3745. color:#FFFFFF;
  3746. }
  3747. #u32307 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:54px;
  3751. top:1157px;
  3752. width:25px;
  3753. height:17px;
  3754. display:flex;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:12px;
  3759. color:#FFFFFF;
  3760. }
  3761. #u32307 .text {
  3762. position:absolute;
  3763. align-self:flex-start;
  3764. padding:0px 0px 0px 0px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u32307_text {
  3769. border-width:0px;
  3770. white-space:nowrap;
  3771. text-transform:none;
  3772. }
  3773. #u32308 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:0px;
  3779. height:0px;
  3780. }
  3781. #u32309_div {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:0px;
  3786. width:75px;
  3787. height:50px;
  3788. background:inherit;
  3789. background-color:rgba(255, 255, 255, 1);
  3790. border:none;
  3791. border-left:0px;
  3792. border-radius:26px;
  3793. border-top-left-radius:0px;
  3794. border-top-right-radius:0px;
  3795. border-bottom-left-radius:0px;
  3796. -moz-box-shadow:none;
  3797. -webkit-box-shadow:none;
  3798. box-shadow:none;
  3799. }
  3800. #u32309 {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:329px;
  3804. top:1128px;
  3805. width:75px;
  3806. height:50px;
  3807. display:flex;
  3808. }
  3809. #u32309 .text {
  3810. position:absolute;
  3811. align-self:center;
  3812. padding:2px 2px 2px 2px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u32309_text {
  3817. border-width:0px;
  3818. word-wrap:break-word;
  3819. text-transform:none;
  3820. visibility:hidden;
  3821. }
  3822. #u32310 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:0px;
  3826. top:0px;
  3827. width:0px;
  3828. height:0px;
  3829. }
  3830. #u32311_img {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:24px;
  3836. height:24px;
  3837. }
  3838. #u32311 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:354px;
  3842. top:1134px;
  3843. width:24px;
  3844. height:24px;
  3845. display:flex;
  3846. font-size:8px;
  3847. }
  3848. #u32311 .text {
  3849. position:absolute;
  3850. align-self:center;
  3851. padding:2px 2px 2px 2px;
  3852. box-sizing:border-box;
  3853. width:100%;
  3854. }
  3855. #u32311_text {
  3856. border-width:0px;
  3857. word-wrap:break-word;
  3858. text-transform:none;
  3859. }
  3860. #u32312_div {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:25px;
  3866. height:17px;
  3867. background:inherit;
  3868. background-color:rgba(255, 255, 255, 0);
  3869. border:none;
  3870. border-radius:0px;
  3871. -moz-box-shadow:none;
  3872. -webkit-box-shadow:none;
  3873. box-shadow:none;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:12px;
  3878. }
  3879. #u32312 {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:354px;
  3883. top:1159px;
  3884. width:25px;
  3885. height:17px;
  3886. display:flex;
  3887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:12px;
  3891. }
  3892. #u32312 .text {
  3893. position:absolute;
  3894. align-self:flex-start;
  3895. padding:0px 0px 0px 0px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u32312_text {
  3900. border-width:0px;
  3901. white-space:nowrap;
  3902. text-transform:none;
  3903. }
  3904. #u32313 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:0px;
  3910. height:0px;
  3911. }
  3912. #u32314_div {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:0px;
  3917. width:75px;
  3918. height:50px;
  3919. background:inherit;
  3920. background-color:rgba(255, 255, 255, 1);
  3921. border:none;
  3922. border-radius:0px;
  3923. border-top-left-radius:0px;
  3924. border-top-right-radius:0px;
  3925. -moz-box-shadow:none;
  3926. -webkit-box-shadow:none;
  3927. box-shadow:none;
  3928. }
  3929. #u32314 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:254px;
  3933. top:1128px;
  3934. width:75px;
  3935. height:50px;
  3936. display:flex;
  3937. }
  3938. #u32314 .text {
  3939. position:absolute;
  3940. align-self:center;
  3941. padding:2px 2px 2px 2px;
  3942. box-sizing:border-box;
  3943. width:100%;
  3944. }
  3945. #u32314_text {
  3946. border-width:0px;
  3947. word-wrap:break-word;
  3948. text-transform:none;
  3949. visibility:hidden;
  3950. }
  3951. #u32315 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:0px;
  3957. height:0px;
  3958. }
  3959. #u32316_img {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:0px;
  3963. top:0px;
  3964. width:24px;
  3965. height:24px;
  3966. }
  3967. #u32316 {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:279px;
  3971. top:1132px;
  3972. width:24px;
  3973. height:24px;
  3974. display:flex;
  3975. font-size:8px;
  3976. }
  3977. #u32316 .text {
  3978. position:absolute;
  3979. align-self:center;
  3980. padding:2px 2px 2px 2px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u32316_text {
  3985. border-width:0px;
  3986. word-wrap:break-word;
  3987. text-transform:none;
  3988. }
  3989. #u32317_div {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:25px;
  3995. height:17px;
  3996. background:inherit;
  3997. background-color:rgba(255, 255, 255, 0);
  3998. border:none;
  3999. border-radius:0px;
  4000. -moz-box-shadow:none;
  4001. -webkit-box-shadow:none;
  4002. box-shadow:none;
  4003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:12px;
  4007. }
  4008. #u32317 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:279px;
  4012. top:1157px;
  4013. width:25px;
  4014. height:17px;
  4015. display:flex;
  4016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4017. font-weight:400;
  4018. font-style:normal;
  4019. font-size:12px;
  4020. }
  4021. #u32317 .text {
  4022. position:absolute;
  4023. align-self:flex-start;
  4024. padding:0px 0px 0px 0px;
  4025. box-sizing:border-box;
  4026. width:100%;
  4027. }
  4028. #u32317_text {
  4029. border-width:0px;
  4030. white-space:nowrap;
  4031. text-transform:none;
  4032. }
  4033. #u32318 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:0px;
  4039. height:0px;
  4040. }
  4041. #u32319_div {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:75px;
  4047. height:50px;
  4048. background:inherit;
  4049. background-color:rgba(255, 255, 255, 1);
  4050. border:none;
  4051. border-radius:0px;
  4052. border-top-left-radius:0px;
  4053. border-top-right-radius:0px;
  4054. -moz-box-shadow:none;
  4055. -webkit-box-shadow:none;
  4056. box-shadow:none;
  4057. }
  4058. #u32319 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:179px;
  4062. top:1128px;
  4063. width:75px;
  4064. height:50px;
  4065. display:flex;
  4066. }
  4067. #u32319 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:2px 2px 2px 2px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u32319_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. visibility:hidden;
  4079. }
  4080. #u32320 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:0px;
  4086. height:0px;
  4087. }
  4088. #u32321_img {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:24px;
  4094. height:24px;
  4095. }
  4096. #u32321 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:204px;
  4100. top:1132px;
  4101. width:24px;
  4102. height:24px;
  4103. display:flex;
  4104. font-size:8px;
  4105. }
  4106. #u32321 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 2px 2px 2px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u32321_text {
  4114. border-width:0px;
  4115. word-wrap:break-word;
  4116. text-transform:none;
  4117. }
  4118. #u32322_div {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:37px;
  4124. height:17px;
  4125. background:inherit;
  4126. background-color:rgba(255, 255, 255, 0);
  4127. border:none;
  4128. border-radius:0px;
  4129. -moz-box-shadow:none;
  4130. -webkit-box-shadow:none;
  4131. box-shadow:none;
  4132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4133. font-weight:400;
  4134. font-style:normal;
  4135. font-size:12px;
  4136. }
  4137. #u32322 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:198px;
  4141. top:1157px;
  4142. width:37px;
  4143. height:17px;
  4144. display:flex;
  4145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:12px;
  4149. }
  4150. #u32322 .text {
  4151. position:absolute;
  4152. align-self:flex-start;
  4153. padding:0px 0px 0px 0px;
  4154. box-sizing:border-box;
  4155. width:100%;
  4156. }
  4157. #u32322_text {
  4158. border-width:0px;
  4159. white-space:nowrap;
  4160. text-transform:none;
  4161. }
  4162. #u32323 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:0px;
  4168. height:0px;
  4169. }
  4170. #u32324_div {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:75px;
  4176. height:50px;
  4177. background:inherit;
  4178. background-color:rgba(255, 255, 255, 1);
  4179. border:none;
  4180. border-radius:0px;
  4181. border-top-left-radius:0px;
  4182. border-top-right-radius:0px;
  4183. -moz-box-shadow:none;
  4184. -webkit-box-shadow:none;
  4185. box-shadow:none;
  4186. }
  4187. #u32324 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:104px;
  4191. top:1128px;
  4192. width:75px;
  4193. height:50px;
  4194. display:flex;
  4195. }
  4196. #u32324 .text {
  4197. position:absolute;
  4198. align-self:center;
  4199. padding:2px 2px 2px 2px;
  4200. box-sizing:border-box;
  4201. width:100%;
  4202. }
  4203. #u32324_text {
  4204. border-width:0px;
  4205. word-wrap:break-word;
  4206. text-transform:none;
  4207. visibility:hidden;
  4208. }
  4209. #u32325 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:0px;
  4215. height:0px;
  4216. }
  4217. #u32326_img {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:24px;
  4223. height:24px;
  4224. }
  4225. #u32326 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:129px;
  4229. top:1132px;
  4230. width:24px;
  4231. height:24px;
  4232. display:flex;
  4233. font-size:8px;
  4234. }
  4235. #u32326 .text {
  4236. position:absolute;
  4237. align-self:center;
  4238. padding:2px 2px 2px 2px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u32326_text {
  4243. border-width:0px;
  4244. word-wrap:break-word;
  4245. text-transform:none;
  4246. }
  4247. #u32327_div {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:25px;
  4253. height:17px;
  4254. background:inherit;
  4255. background-color:rgba(255, 255, 255, 0);
  4256. border:none;
  4257. border-radius:0px;
  4258. -moz-box-shadow:none;
  4259. -webkit-box-shadow:none;
  4260. box-shadow:none;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:12px;
  4265. }
  4266. #u32327 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:129px;
  4270. top:1157px;
  4271. width:25px;
  4272. height:17px;
  4273. display:flex;
  4274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:12px;
  4278. }
  4279. #u32327 .text {
  4280. position:absolute;
  4281. align-self:flex-start;
  4282. padding:0px 0px 0px 0px;
  4283. box-sizing:border-box;
  4284. width:100%;
  4285. }
  4286. #u32327_text {
  4287. border-width:0px;
  4288. white-space:nowrap;
  4289. text-transform:none;
  4290. }
  4291. #u32328 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:0px;
  4297. height:0px;
  4298. }
  4299. #u32329_div {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:30px;
  4305. height:30px;
  4306. background:inherit;
  4307. background-color:rgba(255, 255, 255, 1);
  4308. box-sizing:border-box;
  4309. border-width:1px;
  4310. border-style:solid;
  4311. border-color:rgba(121, 121, 121, 1);
  4312. border-radius:4px;
  4313. -moz-box-shadow:none;
  4314. -webkit-box-shadow:none;
  4315. box-shadow:none;
  4316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4317. font-weight:400;
  4318. font-style:normal;
  4319. font-size:8px;
  4320. }
  4321. #u32329 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:67px;
  4325. top:539px;
  4326. width:30px;
  4327. height:30px;
  4328. display:flex;
  4329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. font-size:8px;
  4333. }
  4334. #u32329 .text {
  4335. position:absolute;
  4336. align-self:center;
  4337. padding:2px 2px 2px 2px;
  4338. box-sizing:border-box;
  4339. width:100%;
  4340. }
  4341. #u32329_text {
  4342. border-width:0px;
  4343. word-wrap:break-word;
  4344. text-transform:none;
  4345. }
  4346. #u32330_div {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:49px;
  4352. height:17px;
  4353. background:inherit;
  4354. background-color:rgba(255, 255, 255, 0);
  4355. border:none;
  4356. border-radius:0px;
  4357. -moz-box-shadow:none;
  4358. -webkit-box-shadow:none;
  4359. box-shadow:none;
  4360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:12px;
  4364. }
  4365. #u32330 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:57px;
  4369. top:573px;
  4370. width:49px;
  4371. height:17px;
  4372. display:flex;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:12px;
  4377. }
  4378. #u32330 .text {
  4379. position:absolute;
  4380. align-self:flex-start;
  4381. padding:0px 0px 0px 0px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u32330_text {
  4386. border-width:0px;
  4387. white-space:nowrap;
  4388. text-transform:none;
  4389. }
  4390. #u32331 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:0px;
  4396. height:0px;
  4397. }
  4398. #u32332_div {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:30px;
  4404. height:30px;
  4405. background:inherit;
  4406. background-color:rgba(255, 255, 255, 1);
  4407. box-sizing:border-box;
  4408. border-width:1px;
  4409. border-style:solid;
  4410. border-color:rgba(121, 121, 121, 1);
  4411. border-radius:4px;
  4412. -moz-box-shadow:none;
  4413. -webkit-box-shadow:none;
  4414. box-shadow:none;
  4415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:8px;
  4419. }
  4420. #u32332 {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:158px;
  4424. top:539px;
  4425. width:30px;
  4426. height:30px;
  4427. display:flex;
  4428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4429. font-weight:400;
  4430. font-style:normal;
  4431. font-size:8px;
  4432. }
  4433. #u32332 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 2px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u32332_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. }
  4445. #u32333_div {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:49px;
  4451. height:17px;
  4452. background:inherit;
  4453. background-color:rgba(255, 255, 255, 0);
  4454. border:none;
  4455. border-radius:0px;
  4456. -moz-box-shadow:none;
  4457. -webkit-box-shadow:none;
  4458. box-shadow:none;
  4459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4460. font-weight:400;
  4461. font-style:normal;
  4462. font-size:12px;
  4463. }
  4464. #u32333 {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:148px;
  4468. top:573px;
  4469. width:49px;
  4470. height:17px;
  4471. display:flex;
  4472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:12px;
  4476. }
  4477. #u32333 .text {
  4478. position:absolute;
  4479. align-self:flex-start;
  4480. padding:0px 0px 0px 0px;
  4481. box-sizing:border-box;
  4482. width:100%;
  4483. }
  4484. #u32333_text {
  4485. border-width:0px;
  4486. white-space:nowrap;
  4487. text-transform:none;
  4488. }
  4489. #u32334_div {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:375px;
  4495. height:37px;
  4496. background:inherit;
  4497. background-color:rgba(255, 255, 255, 1);
  4498. border:none;
  4499. border-radius:0px;
  4500. -moz-box-shadow:none;
  4501. -webkit-box-shadow:none;
  4502. box-shadow:none;
  4503. }
  4504. #u32334 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:29px;
  4508. top:108px;
  4509. width:375px;
  4510. height:37px;
  4511. display:flex;
  4512. }
  4513. #u32334 .text {
  4514. position:absolute;
  4515. align-self:center;
  4516. padding:2px 2px 2px 2px;
  4517. box-sizing:border-box;
  4518. width:100%;
  4519. }
  4520. #u32334_text {
  4521. border-width:0px;
  4522. word-wrap:break-word;
  4523. text-transform:none;
  4524. visibility:hidden;
  4525. }
  4526. #u32335_div {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:119px;
  4532. height:28px;
  4533. background:inherit;
  4534. background-color:rgba(255, 255, 255, 0);
  4535. border:none;
  4536. border-radius:0px;
  4537. -moz-box-shadow:none;
  4538. -webkit-box-shadow:none;
  4539. box-shadow:none;
  4540. font-size:18px;
  4541. }
  4542. #u32335 {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:47px;
  4546. top:112px;
  4547. width:119px;
  4548. height:28px;
  4549. display:flex;
  4550. font-size:18px;
  4551. }
  4552. #u32335 .text {
  4553. position:absolute;
  4554. align-self:flex-start;
  4555. padding:0px 0px 0px 0px;
  4556. box-sizing:border-box;
  4557. width:100%;
  4558. }
  4559. #u32335_text {
  4560. border-width:0px;
  4561. white-space:nowrap;
  4562. text-transform:none;
  4563. }