styles.css 76 KB

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