styles.css 78 KB

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