styles.css 74 KB

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