styles.css 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:898px;
  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. #u51740 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u51741 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u51741 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u51741_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u51741_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u51742_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u51742 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u51742 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u51742_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u51743 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u51744_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u51744 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u51744 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u51744_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u51745 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u51746 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u51746 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u51746_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u51746_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u51747 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u51747 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u51747_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u51747_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u51748 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u51749 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u51749 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u51749_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u51749_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u51750 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u51750 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u51750_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u51750_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u51751 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u51751 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u51751_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u51751_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u51752 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u51752 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u51752_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u51752_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u51753 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u51753 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u51753_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u51753_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u51754_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u51754 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u51754 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u51754_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u51755 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u51756 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u51756 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u51756_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u51756_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u51757_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u51757 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u51757 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u51757_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u51758 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u51759 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u51759 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u51759_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u51759_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u51760_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u51760 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u51760 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u51760_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u51761_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u51761 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u51761 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u51761_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u51762 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u51763 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u51763 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u51763_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u51763_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u51764_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u51764 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u51764 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u51764_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u51765 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u51766 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u51766 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u51766_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u51766_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u51767_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u51767 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u51767 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u51767_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u51768_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:732px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:28px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u51768 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:107px;
  823. width:375px;
  824. height:732px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u51768 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u51768_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u51769_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:375px;
  848. height:41px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 1);
  851. box-sizing:border-box;
  852. border-width:1px;
  853. border-style:solid;
  854. border-color:rgba(215, 215, 215, 1);
  855. border-left:0px;
  856. border-top:0px;
  857. border-right:0px;
  858. border-radius:0px;
  859. border-bottom-right-radius:0px;
  860. border-bottom-left-radius:0px;
  861. filter:drop-shadow(none);
  862. transition:none;
  863. }
  864. #u51769 {
  865. border-width:0px;
  866. position:absolute;
  867. left:29px;
  868. top:67px;
  869. width:375px;
  870. height:41px;
  871. display:flex;
  872. transition:none;
  873. transform-origin:50% 50%;
  874. }
  875. #u51769 .text {
  876. position:absolute;
  877. align-self:center;
  878. padding:2px 2px 2px 2px;
  879. box-sizing:border-box;
  880. width:100%;
  881. }
  882. #u51769_text {
  883. border-width:0px;
  884. word-wrap:break-word;
  885. text-transform:none;
  886. visibility:hidden;
  887. }
  888. #u51770 {
  889. border-width:0px;
  890. position:absolute;
  891. left:29px;
  892. top:24px;
  893. width:375px;
  894. height:44px;
  895. display:flex;
  896. transition:none;
  897. }
  898. #u51770 .text {
  899. position:absolute;
  900. align-self:center;
  901. padding:2px 2px 2px 2px;
  902. box-sizing:border-box;
  903. width:100%;
  904. }
  905. #u51770_img {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:375px;
  911. height:44px;
  912. }
  913. #u51770_text {
  914. border-width:0px;
  915. word-wrap:break-word;
  916. text-transform:none;
  917. visibility:hidden;
  918. }
  919. #u51771 {
  920. border-width:0px;
  921. position:absolute;
  922. left:0px;
  923. top:0px;
  924. width:0px;
  925. height:0px;
  926. }
  927. #u51772_div {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:88px;
  933. height:32px;
  934. background:inherit;
  935. background-color:rgba(255, 255, 255, 1);
  936. box-sizing:border-box;
  937. border-width:1px;
  938. border-style:solid;
  939. border-color:rgba(242, 242, 242, 1);
  940. border-radius:33px;
  941. filter:drop-shadow(none);
  942. transition:none;
  943. }
  944. #u51772 {
  945. border-width:0px;
  946. position:absolute;
  947. left:309px;
  948. top:71px;
  949. width:88px;
  950. height:32px;
  951. display:flex;
  952. transition:none;
  953. transform-origin:50% 50%;
  954. }
  955. #u51772 .text {
  956. position:absolute;
  957. align-self:center;
  958. padding:2px 2px 2px 2px;
  959. box-sizing:border-box;
  960. width:100%;
  961. }
  962. #u51772_text {
  963. border-width:0px;
  964. word-wrap:break-word;
  965. text-transform:none;
  966. visibility:hidden;
  967. }
  968. #u51773 {
  969. border-width:0px;
  970. position:absolute;
  971. left:0px;
  972. top:0px;
  973. width:0px;
  974. height:0px;
  975. }
  976. #u51774 {
  977. border-width:0px;
  978. position:absolute;
  979. left:372px;
  980. top:78px;
  981. width:18px;
  982. height:18px;
  983. display:flex;
  984. transition:none;
  985. }
  986. #u51774 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:2px 2px 2px 2px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u51774_img {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:18px;
  999. height:18px;
  1000. }
  1001. #u51774_text {
  1002. border-width:0px;
  1003. word-wrap:break-word;
  1004. text-transform:none;
  1005. visibility:hidden;
  1006. }
  1007. #u51775 {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:378px;
  1011. top:84px;
  1012. width:6px;
  1013. height:6px;
  1014. display:flex;
  1015. transition:none;
  1016. }
  1017. #u51775 .text {
  1018. position:absolute;
  1019. align-self:center;
  1020. padding:2px 2px 2px 2px;
  1021. box-sizing:border-box;
  1022. width:100%;
  1023. }
  1024. #u51775_img {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:0px;
  1028. top:0px;
  1029. width:6px;
  1030. height:6px;
  1031. }
  1032. #u51775_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u51776 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:0px;
  1044. height:0px;
  1045. }
  1046. #u51777 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:323px;
  1050. top:85px;
  1051. width:5px;
  1052. height:5px;
  1053. display:flex;
  1054. transition:none;
  1055. }
  1056. #u51777 .text {
  1057. position:absolute;
  1058. align-self:center;
  1059. padding:2px 2px 2px 2px;
  1060. box-sizing:border-box;
  1061. width:100%;
  1062. }
  1063. #u51777_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:5px;
  1069. height:5px;
  1070. }
  1071. #u51777_text {
  1072. border-width:0px;
  1073. word-wrap:break-word;
  1074. text-transform:none;
  1075. visibility:hidden;
  1076. }
  1077. #u51778 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:339px;
  1081. top:85px;
  1082. width:5px;
  1083. height:5px;
  1084. display:flex;
  1085. transition:none;
  1086. }
  1087. #u51778 .text {
  1088. position:absolute;
  1089. align-self:center;
  1090. padding:2px 2px 2px 2px;
  1091. box-sizing:border-box;
  1092. width:100%;
  1093. }
  1094. #u51778_img {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:5px;
  1100. height:5px;
  1101. }
  1102. #u51778_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u51779 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:330px;
  1112. top:84px;
  1113. width:7px;
  1114. height:7px;
  1115. display:flex;
  1116. transition:none;
  1117. }
  1118. #u51779 .text {
  1119. position:absolute;
  1120. align-self:center;
  1121. padding:2px 2px 2px 2px;
  1122. box-sizing:border-box;
  1123. width:100%;
  1124. }
  1125. #u51779_img {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:0px;
  1129. top:0px;
  1130. width:7px;
  1131. height:7px;
  1132. }
  1133. #u51779_text {
  1134. border-width:0px;
  1135. word-wrap:break-word;
  1136. text-transform:none;
  1137. visibility:hidden;
  1138. }
  1139. #u51780 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:347px;
  1143. top:87px;
  1144. width:18px;
  1145. height:1px;
  1146. display:flex;
  1147. -webkit-transform:rotate(90deg);
  1148. -moz-transform:rotate(90deg);
  1149. -ms-transform:rotate(90deg);
  1150. transform:rotate(90deg);
  1151. transition:none;
  1152. }
  1153. #u51780 .text {
  1154. position:absolute;
  1155. align-self:center;
  1156. padding:2px 2px 2px 2px;
  1157. box-sizing:border-box;
  1158. width:100%;
  1159. }
  1160. #u51780_img {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:0px;
  1164. top:0px;
  1165. width:19px;
  1166. height:2px;
  1167. }
  1168. #u51780_text {
  1169. border-width:0px;
  1170. word-wrap:break-word;
  1171. text-transform:none;
  1172. visibility:hidden;
  1173. }
  1174. #u51781_div {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:12px;
  1180. height:12px;
  1181. background:inherit;
  1182. background-color:rgba(255, 255, 255, 0);
  1183. box-sizing:border-box;
  1184. border-width:2px;
  1185. border-style:solid;
  1186. border-color:rgba(51, 51, 51, 1);
  1187. border-right:0px;
  1188. border-bottom:0px;
  1189. border-radius:0px;
  1190. border-top-right-radius:0px;
  1191. border-bottom-left-radius:0px;
  1192. filter:drop-shadow(none);
  1193. transition:none;
  1194. }
  1195. #u51781 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:44px;
  1199. top:81px;
  1200. width:12px;
  1201. height:12px;
  1202. display:flex;
  1203. -webkit-transform:rotate(315deg);
  1204. -moz-transform:rotate(315deg);
  1205. -ms-transform:rotate(315deg);
  1206. transform:rotate(315deg);
  1207. transition:none;
  1208. transform-origin:50% 50%;
  1209. }
  1210. #u51781 .text {
  1211. position:absolute;
  1212. align-self:center;
  1213. padding:2px 2px 2px 2px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u51781_text {
  1218. border-width:0px;
  1219. word-wrap:break-word;
  1220. text-transform:none;
  1221. visibility:hidden;
  1222. }
  1223. #u51782 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:0px;
  1229. height:0px;
  1230. }
  1231. #u51783_div {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:375px;
  1237. height:60px;
  1238. background:inherit;
  1239. background-color:rgba(255, 255, 255, 1);
  1240. box-sizing:border-box;
  1241. border-width:1px;
  1242. border-style:solid;
  1243. border-color:rgba(242, 242, 242, 1);
  1244. border-radius:20px;
  1245. border-top-left-radius:0px;
  1246. border-top-right-radius:0px;
  1247. filter:drop-shadow(none);
  1248. transition:none;
  1249. }
  1250. #u51783 {
  1251. border-width:0px;
  1252. position:absolute;
  1253. left:29px;
  1254. top:779px;
  1255. width:375px;
  1256. height:60px;
  1257. display:flex;
  1258. transition:none;
  1259. transform-origin:50% 50%;
  1260. }
  1261. #u51783 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 2px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u51783_text {
  1269. border-width:0px;
  1270. word-wrap:break-word;
  1271. text-transform:none;
  1272. visibility:hidden;
  1273. }
  1274. #u51784_div {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:0px;
  1278. top:0px;
  1279. width:122px;
  1280. height:40px;
  1281. background:inherit;
  1282. background-color:rgba(255, 255, 255, 1);
  1283. box-sizing:border-box;
  1284. border-width:1px;
  1285. border-style:solid;
  1286. border-color:rgba(121, 121, 121, 1);
  1287. border-radius:63px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1291. font-weight:400;
  1292. font-style:normal;
  1293. font-size:14px;
  1294. color:#555555;
  1295. }
  1296. #u51784 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:172px;
  1300. top:789px;
  1301. width:122px;
  1302. height:40px;
  1303. display:flex;
  1304. transition:none;
  1305. transform-origin:50% 50%;
  1306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1307. font-weight:400;
  1308. font-style:normal;
  1309. font-size:14px;
  1310. color:#555555;
  1311. }
  1312. #u51784 .text {
  1313. position:absolute;
  1314. align-self:center;
  1315. padding:2px 2px 2px 2px;
  1316. box-sizing:border-box;
  1317. width:100%;
  1318. }
  1319. #u51784_text {
  1320. border-width:0px;
  1321. word-wrap:break-word;
  1322. text-transform:none;
  1323. }
  1324. #u51785_div {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:80px;
  1330. height:40px;
  1331. background:inherit;
  1332. background-color:rgba(24, 144, 255, 1);
  1333. border-radius:63px;
  1334. filter:drop-shadow(none);
  1335. transition:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. font-size:14px;
  1340. color:#FFFFFF;
  1341. }
  1342. #u51785 {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:304px;
  1346. top:789px;
  1347. width:80px;
  1348. height:40px;
  1349. display:flex;
  1350. transition:none;
  1351. transform-origin:50% 50%;
  1352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1353. font-weight:400;
  1354. font-style:normal;
  1355. font-size:14px;
  1356. color:#FFFFFF;
  1357. }
  1358. #u51785 .text {
  1359. position:absolute;
  1360. align-self:center;
  1361. padding:2px 2px 2px 2px;
  1362. box-sizing:border-box;
  1363. width:100%;
  1364. }
  1365. #u51785_text {
  1366. border-width:0px;
  1367. word-wrap:break-word;
  1368. text-transform:none;
  1369. }
  1370. #u51786_div {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:68px;
  1376. height:20px;
  1377. background:inherit;
  1378. background-color:rgba(255, 255, 255, 0);
  1379. border-left:0px;
  1380. border-top:0px;
  1381. border-right:0px;
  1382. border-radius:0px;
  1383. border-bottom-right-radius:0px;
  1384. border-bottom-left-radius:0px;
  1385. filter:drop-shadow(none);
  1386. transition:none;
  1387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1388. font-weight:400;
  1389. font-style:normal;
  1390. font-size:12px;
  1391. line-height:20px;
  1392. }
  1393. #u51786 {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:49px;
  1397. top:799px;
  1398. width:68px;
  1399. height:20px;
  1400. display:flex;
  1401. transition:none;
  1402. transform-origin:50% 50%;
  1403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1404. font-weight:400;
  1405. font-style:normal;
  1406. font-size:12px;
  1407. line-height:20px;
  1408. }
  1409. #u51786 .text {
  1410. position:absolute;
  1411. align-self:flex-start;
  1412. padding:0px 0px 0px 0px;
  1413. box-sizing:border-box;
  1414. width:100%;
  1415. }
  1416. #u51786_text {
  1417. border-width:0px;
  1418. white-space:nowrap;
  1419. text-transform:none;
  1420. }
  1421. #u51787_div {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:0px;
  1425. top:0px;
  1426. width:37px;
  1427. height:25px;
  1428. background:inherit;
  1429. background-color:rgba(255, 255, 255, 0);
  1430. border-radius:0px;
  1431. filter:drop-shadow(none);
  1432. transition:none;
  1433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1434. font-weight:400;
  1435. font-style:normal;
  1436. font-size:18px;
  1437. }
  1438. #u51787 {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:198px;
  1442. top:75px;
  1443. width:37px;
  1444. height:25px;
  1445. display:flex;
  1446. transition:none;
  1447. transform-origin:50% 50%;
  1448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1449. font-weight:400;
  1450. font-style:normal;
  1451. font-size:18px;
  1452. }
  1453. #u51787 .text {
  1454. position:absolute;
  1455. align-self:flex-start;
  1456. padding:0px 0px 0px 0px;
  1457. box-sizing:border-box;
  1458. width:100%;
  1459. }
  1460. #u51787_text {
  1461. border-width:0px;
  1462. white-space:nowrap;
  1463. text-transform:none;
  1464. }
  1465. #u51788_div {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:375px;
  1471. height:60px;
  1472. background:inherit;
  1473. background-color:rgba(255, 255, 255, 1);
  1474. border-left:0px;
  1475. border-top:0px;
  1476. border-right:0px;
  1477. border-radius:0px;
  1478. border-bottom-right-radius:0px;
  1479. border-bottom-left-radius:0px;
  1480. filter:drop-shadow(none);
  1481. transition:none;
  1482. }
  1483. #u51788 {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:29px;
  1487. top:138px;
  1488. width:375px;
  1489. height:60px;
  1490. display:flex;
  1491. transition:none;
  1492. transform-origin:50% 50%;
  1493. }
  1494. #u51788 .text {
  1495. position:absolute;
  1496. align-self:center;
  1497. padding:2px 2px 2px 2px;
  1498. box-sizing:border-box;
  1499. width:100%;
  1500. }
  1501. #u51788_text {
  1502. border-width:0px;
  1503. word-wrap:break-word;
  1504. text-transform:none;
  1505. visibility:hidden;
  1506. }
  1507. #u51789_div {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:57px;
  1513. height:30px;
  1514. background:inherit;
  1515. background-color:rgba(255, 255, 255, 0);
  1516. border-left:0px;
  1517. border-top:0px;
  1518. border-right:0px;
  1519. border-radius:0px;
  1520. border-bottom-right-radius:0px;
  1521. border-bottom-left-radius:0px;
  1522. filter:drop-shadow(none);
  1523. transition:none;
  1524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1525. font-weight:400;
  1526. font-style:normal;
  1527. font-size:14px;
  1528. line-height:30px;
  1529. }
  1530. #u51789 {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:67px;
  1534. top:153px;
  1535. width:57px;
  1536. height:30px;
  1537. display:flex;
  1538. transition:none;
  1539. transform-origin:50% 50%;
  1540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1541. font-weight:400;
  1542. font-style:normal;
  1543. font-size:14px;
  1544. line-height:30px;
  1545. }
  1546. #u51789 .text {
  1547. position:absolute;
  1548. align-self:center;
  1549. padding:0px 0px 0px 0px;
  1550. box-sizing:border-box;
  1551. width:100%;
  1552. }
  1553. #u51789_text {
  1554. border-width:0px;
  1555. white-space:nowrap;
  1556. text-transform:none;
  1557. }
  1558. #u51790 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u51791_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:8px;
  1572. height:8px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. box-sizing:border-box;
  1576. border-width:1px;
  1577. border-style:solid;
  1578. border-color:rgba(127, 127, 127, 1);
  1579. border-right:0px;
  1580. border-bottom:0px;
  1581. border-radius:0px;
  1582. border-top-right-radius:0px;
  1583. border-bottom-left-radius:0px;
  1584. filter:drop-shadow(none);
  1585. transition:none;
  1586. }
  1587. #u51791 {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:379px;
  1591. top:164px;
  1592. width:8px;
  1593. height:8px;
  1594. display:flex;
  1595. -webkit-transform:rotate(135deg);
  1596. -moz-transform:rotate(135deg);
  1597. -ms-transform:rotate(135deg);
  1598. transform:rotate(135deg);
  1599. transition:none;
  1600. transform-origin:50% 50%;
  1601. }
  1602. #u51791 .text {
  1603. position:absolute;
  1604. align-self:center;
  1605. padding:2px 2px 2px 2px;
  1606. box-sizing:border-box;
  1607. width:100%;
  1608. }
  1609. #u51791_text {
  1610. border-width:0px;
  1611. word-wrap:break-word;
  1612. text-transform:none;
  1613. visibility:hidden;
  1614. }
  1615. #u51792_div {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:74px;
  1621. height:30px;
  1622. background:inherit;
  1623. background-color:rgba(255, 255, 255, 0);
  1624. border-left:0px;
  1625. border-top:0px;
  1626. border-right:0px;
  1627. border-radius:0px;
  1628. border-bottom-right-radius:0px;
  1629. border-bottom-left-radius:0px;
  1630. filter:drop-shadow(none);
  1631. transition:none;
  1632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1633. font-weight:400;
  1634. font-style:normal;
  1635. text-align:right;
  1636. line-height:30px;
  1637. }
  1638. #u51792 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:298px;
  1642. top:153px;
  1643. width:74px;
  1644. height:30px;
  1645. display:flex;
  1646. transition:none;
  1647. transform-origin:50% 50%;
  1648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1649. font-weight:400;
  1650. font-style:normal;
  1651. text-align:right;
  1652. line-height:30px;
  1653. }
  1654. #u51792 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:0px 0px 0px 0px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u51792_text {
  1662. border-width:0px;
  1663. white-space:nowrap;
  1664. text-transform:none;
  1665. }
  1666. #u51793_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:57px;
  1672. height:30px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. border-left:0px;
  1676. border-top:0px;
  1677. border-right:0px;
  1678. border-radius:0px;
  1679. border-bottom-right-radius:0px;
  1680. border-bottom-left-radius:0px;
  1681. filter:drop-shadow(none);
  1682. transition:none;
  1683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1684. font-weight:400;
  1685. font-style:normal;
  1686. font-size:14px;
  1687. color:#AAAAAA;
  1688. line-height:30px;
  1689. }
  1690. #u51793 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:49px;
  1694. top:108px;
  1695. width:57px;
  1696. height:30px;
  1697. display:flex;
  1698. transition:none;
  1699. transform-origin:50% 50%;
  1700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1701. font-weight:400;
  1702. font-style:normal;
  1703. font-size:14px;
  1704. color:#AAAAAA;
  1705. line-height:30px;
  1706. }
  1707. #u51793 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u51793_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u51794 label {
  1720. left:0px;
  1721. width:100%;
  1722. height:100%;
  1723. }
  1724. #u51794_img {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:12px;
  1730. height:12px;
  1731. }
  1732. #u51794 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:42px;
  1736. top:160px;
  1737. width:25px;
  1738. height:16px;
  1739. display:flex;
  1740. transition:none;
  1741. }
  1742. #u51794 .text {
  1743. position:absolute;
  1744. align-self:center;
  1745. padding:0px 2px 0px 2px;
  1746. box-sizing:border-box;
  1747. }
  1748. #u51794_img.selected {
  1749. }
  1750. #u51794.selected {
  1751. }
  1752. #u51794_img.disabled {
  1753. }
  1754. #u51794.disabled {
  1755. }
  1756. #u51794_img.selected.error {
  1757. }
  1758. #u51794.selected.error {
  1759. }
  1760. #u51794_img.selected.hint {
  1761. }
  1762. #u51794.selected.hint {
  1763. }
  1764. #u51794_img.selected.error.hint {
  1765. }
  1766. #u51794.selected.error.hint {
  1767. }
  1768. #u51794_img.mouseOver.selected {
  1769. }
  1770. #u51794.mouseOver.selected {
  1771. }
  1772. #u51794_img.mouseOver.selected.error {
  1773. }
  1774. #u51794.mouseOver.selected.error {
  1775. }
  1776. #u51794_img.mouseOver.selected.hint {
  1777. }
  1778. #u51794.mouseOver.selected.hint {
  1779. }
  1780. #u51794_img.mouseOver.selected.error.hint {
  1781. }
  1782. #u51794.mouseOver.selected.error.hint {
  1783. }
  1784. #u51794_img.mouseDown.selected {
  1785. }
  1786. #u51794.mouseDown.selected {
  1787. }
  1788. #u51794_img.mouseDown.selected.error {
  1789. }
  1790. #u51794.mouseDown.selected.error {
  1791. }
  1792. #u51794_img.mouseDown.selected.hint {
  1793. }
  1794. #u51794.mouseDown.selected.hint {
  1795. }
  1796. #u51794_img.mouseDown.selected.error.hint {
  1797. }
  1798. #u51794.mouseDown.selected.error.hint {
  1799. }
  1800. #u51794_img.mouseOver.mouseDown.selected {
  1801. }
  1802. #u51794.mouseOver.mouseDown.selected {
  1803. }
  1804. #u51794_img.mouseOver.mouseDown.selected.error {
  1805. }
  1806. #u51794.mouseOver.mouseDown.selected.error {
  1807. }
  1808. #u51794_img.mouseOver.mouseDown.selected.hint {
  1809. }
  1810. #u51794.mouseOver.mouseDown.selected.hint {
  1811. }
  1812. #u51794_img.mouseOver.mouseDown.selected.error.hint {
  1813. }
  1814. #u51794.mouseOver.mouseDown.selected.error.hint {
  1815. }
  1816. #u51794_img.focused.selected {
  1817. }
  1818. #u51794.focused.selected {
  1819. }
  1820. #u51794_img.focused.selected.error {
  1821. }
  1822. #u51794.focused.selected.error {
  1823. }
  1824. #u51794_img.focused.selected.hint {
  1825. }
  1826. #u51794.focused.selected.hint {
  1827. }
  1828. #u51794_img.focused.selected.error.hint {
  1829. }
  1830. #u51794.focused.selected.error.hint {
  1831. }
  1832. #u51794_img.selected.disabled {
  1833. }
  1834. #u51794.selected.disabled {
  1835. }
  1836. #u51794_img.selected.hint.disabled {
  1837. }
  1838. #u51794.selected.hint.disabled {
  1839. }
  1840. #u51794_img.selected.error.disabled {
  1841. }
  1842. #u51794.selected.error.disabled {
  1843. }
  1844. #u51794_img.selected.error.hint.disabled {
  1845. }
  1846. #u51794.selected.error.hint.disabled {
  1847. }
  1848. #u51794_text {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:12px;
  1852. top:0px;
  1853. width:13px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. visibility:hidden;
  1857. }
  1858. #u51794_input {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:0px;
  1864. height:0px;
  1865. opacity:0;
  1866. }
  1867. #u51795_div {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:375px;
  1873. height:60px;
  1874. background:inherit;
  1875. background-color:rgba(255, 255, 255, 1);
  1876. border-left:0px;
  1877. border-top:0px;
  1878. border-right:0px;
  1879. border-radius:0px;
  1880. border-bottom-right-radius:0px;
  1881. border-bottom-left-radius:0px;
  1882. filter:drop-shadow(none);
  1883. transition:none;
  1884. }
  1885. #u51795 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:29px;
  1889. top:199px;
  1890. width:375px;
  1891. height:60px;
  1892. display:flex;
  1893. transition:none;
  1894. transform-origin:50% 50%;
  1895. }
  1896. #u51795 .text {
  1897. position:absolute;
  1898. align-self:center;
  1899. padding:2px 2px 2px 2px;
  1900. box-sizing:border-box;
  1901. width:100%;
  1902. }
  1903. #u51795_text {
  1904. border-width:0px;
  1905. word-wrap:break-word;
  1906. text-transform:none;
  1907. visibility:hidden;
  1908. }
  1909. #u51796_div {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:57px;
  1915. height:30px;
  1916. background:inherit;
  1917. background-color:rgba(255, 255, 255, 0);
  1918. border-left:0px;
  1919. border-top:0px;
  1920. border-right:0px;
  1921. border-radius:0px;
  1922. border-bottom-right-radius:0px;
  1923. border-bottom-left-radius:0px;
  1924. filter:drop-shadow(none);
  1925. transition:none;
  1926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1927. font-weight:400;
  1928. font-style:normal;
  1929. font-size:14px;
  1930. line-height:30px;
  1931. }
  1932. #u51796 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:67px;
  1936. top:214px;
  1937. width:57px;
  1938. height:30px;
  1939. display:flex;
  1940. transition:none;
  1941. transform-origin:50% 50%;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:14px;
  1946. line-height:30px;
  1947. }
  1948. #u51796 .text {
  1949. position:absolute;
  1950. align-self:center;
  1951. padding:0px 0px 0px 0px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u51796_text {
  1956. border-width:0px;
  1957. white-space:nowrap;
  1958. text-transform:none;
  1959. }
  1960. #u51797 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:0px;
  1966. height:0px;
  1967. }
  1968. #u51798_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:8px;
  1974. height:8px;
  1975. background:inherit;
  1976. background-color:rgba(255, 255, 255, 0);
  1977. box-sizing:border-box;
  1978. border-width:1px;
  1979. border-style:solid;
  1980. border-color:rgba(127, 127, 127, 1);
  1981. border-right:0px;
  1982. border-bottom:0px;
  1983. border-radius:0px;
  1984. border-top-right-radius:0px;
  1985. border-bottom-left-radius:0px;
  1986. filter:drop-shadow(none);
  1987. transition:none;
  1988. }
  1989. #u51798 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:379px;
  1993. top:225px;
  1994. width:8px;
  1995. height:8px;
  1996. display:flex;
  1997. -webkit-transform:rotate(135deg);
  1998. -moz-transform:rotate(135deg);
  1999. -ms-transform:rotate(135deg);
  2000. transform:rotate(135deg);
  2001. transition:none;
  2002. transform-origin:50% 50%;
  2003. }
  2004. #u51798 .text {
  2005. position:absolute;
  2006. align-self:center;
  2007. padding:2px 2px 2px 2px;
  2008. box-sizing:border-box;
  2009. width:100%;
  2010. }
  2011. #u51798_text {
  2012. border-width:0px;
  2013. word-wrap:break-word;
  2014. text-transform:none;
  2015. visibility:hidden;
  2016. }
  2017. #u51799_div {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:74px;
  2023. height:30px;
  2024. background:inherit;
  2025. background-color:rgba(255, 255, 255, 0);
  2026. border-left:0px;
  2027. border-top:0px;
  2028. border-right:0px;
  2029. border-radius:0px;
  2030. border-bottom-right-radius:0px;
  2031. border-bottom-left-radius:0px;
  2032. filter:drop-shadow(none);
  2033. transition:none;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. text-align:right;
  2038. line-height:30px;
  2039. }
  2040. #u51799 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:298px;
  2044. top:214px;
  2045. width:74px;
  2046. height:30px;
  2047. display:flex;
  2048. transition:none;
  2049. transform-origin:50% 50%;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. text-align:right;
  2054. line-height:30px;
  2055. }
  2056. #u51799 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:0px 0px 0px 0px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u51799_text {
  2064. border-width:0px;
  2065. white-space:nowrap;
  2066. text-transform:none;
  2067. }
  2068. #u51800 label {
  2069. left:0px;
  2070. width:100%;
  2071. height:100%;
  2072. }
  2073. #u51800_img {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:12px;
  2079. height:12px;
  2080. }
  2081. #u51800 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:42px;
  2085. top:221px;
  2086. width:25px;
  2087. height:16px;
  2088. display:flex;
  2089. transition:none;
  2090. }
  2091. #u51800 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:0px 2px 0px 2px;
  2095. box-sizing:border-box;
  2096. }
  2097. #u51800_img.selected {
  2098. }
  2099. #u51800.selected {
  2100. }
  2101. #u51800_img.disabled {
  2102. }
  2103. #u51800.disabled {
  2104. }
  2105. #u51800_img.selected.error {
  2106. }
  2107. #u51800.selected.error {
  2108. }
  2109. #u51800_img.selected.hint {
  2110. }
  2111. #u51800.selected.hint {
  2112. }
  2113. #u51800_img.selected.error.hint {
  2114. }
  2115. #u51800.selected.error.hint {
  2116. }
  2117. #u51800_img.mouseOver.selected {
  2118. }
  2119. #u51800.mouseOver.selected {
  2120. }
  2121. #u51800_img.mouseOver.selected.error {
  2122. }
  2123. #u51800.mouseOver.selected.error {
  2124. }
  2125. #u51800_img.mouseOver.selected.hint {
  2126. }
  2127. #u51800.mouseOver.selected.hint {
  2128. }
  2129. #u51800_img.mouseOver.selected.error.hint {
  2130. }
  2131. #u51800.mouseOver.selected.error.hint {
  2132. }
  2133. #u51800_img.mouseDown.selected {
  2134. }
  2135. #u51800.mouseDown.selected {
  2136. }
  2137. #u51800_img.mouseDown.selected.error {
  2138. }
  2139. #u51800.mouseDown.selected.error {
  2140. }
  2141. #u51800_img.mouseDown.selected.hint {
  2142. }
  2143. #u51800.mouseDown.selected.hint {
  2144. }
  2145. #u51800_img.mouseDown.selected.error.hint {
  2146. }
  2147. #u51800.mouseDown.selected.error.hint {
  2148. }
  2149. #u51800_img.mouseOver.mouseDown.selected {
  2150. }
  2151. #u51800.mouseOver.mouseDown.selected {
  2152. }
  2153. #u51800_img.mouseOver.mouseDown.selected.error {
  2154. }
  2155. #u51800.mouseOver.mouseDown.selected.error {
  2156. }
  2157. #u51800_img.mouseOver.mouseDown.selected.hint {
  2158. }
  2159. #u51800.mouseOver.mouseDown.selected.hint {
  2160. }
  2161. #u51800_img.mouseOver.mouseDown.selected.error.hint {
  2162. }
  2163. #u51800.mouseOver.mouseDown.selected.error.hint {
  2164. }
  2165. #u51800_img.focused.selected {
  2166. }
  2167. #u51800.focused.selected {
  2168. }
  2169. #u51800_img.focused.selected.error {
  2170. }
  2171. #u51800.focused.selected.error {
  2172. }
  2173. #u51800_img.focused.selected.hint {
  2174. }
  2175. #u51800.focused.selected.hint {
  2176. }
  2177. #u51800_img.focused.selected.error.hint {
  2178. }
  2179. #u51800.focused.selected.error.hint {
  2180. }
  2181. #u51800_img.selected.disabled {
  2182. }
  2183. #u51800.selected.disabled {
  2184. }
  2185. #u51800_img.selected.hint.disabled {
  2186. }
  2187. #u51800.selected.hint.disabled {
  2188. }
  2189. #u51800_img.selected.error.disabled {
  2190. }
  2191. #u51800.selected.error.disabled {
  2192. }
  2193. #u51800_img.selected.error.hint.disabled {
  2194. }
  2195. #u51800.selected.error.hint.disabled {
  2196. }
  2197. #u51800_text {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:12px;
  2201. top:0px;
  2202. width:13px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. visibility:hidden;
  2206. }
  2207. #u51800_input {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:0px;
  2213. height:0px;
  2214. opacity:0;
  2215. }
  2216. #u51801 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:465px;
  2220. top:0px;
  2221. width:433px;
  2222. height:865px;
  2223. }
  2224. #u51802 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:433px;
  2230. height:865px;
  2231. display:flex;
  2232. transition:none;
  2233. }
  2234. #u51802 .text {
  2235. position:absolute;
  2236. align-self:center;
  2237. padding:2px 2px 2px 2px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u51802_img {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:433px;
  2247. height:865px;
  2248. }
  2249. #u51802_text {
  2250. border-width:0px;
  2251. word-wrap:break-word;
  2252. text-transform:none;
  2253. visibility:hidden;
  2254. }
  2255. #u51803_div {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:375px;
  2261. height:40px;
  2262. background:inherit;
  2263. background-color:rgba(255, 255, 255, 1);
  2264. box-sizing:border-box;
  2265. border-width:1px;
  2266. border-style:solid;
  2267. border-color:rgba(215, 215, 215, 1);
  2268. border-left:0px;
  2269. border-top:0px;
  2270. border-right:0px;
  2271. border-radius:0px;
  2272. border-bottom-right-radius:0px;
  2273. border-bottom-left-radius:0px;
  2274. filter:drop-shadow(none);
  2275. transition:none;
  2276. }
  2277. #u51803 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:29px;
  2281. top:67px;
  2282. width:375px;
  2283. height:40px;
  2284. display:flex;
  2285. transition:none;
  2286. transform-origin:50% 50%;
  2287. }
  2288. #u51803 .text {
  2289. position:absolute;
  2290. align-self:center;
  2291. padding:2px 2px 2px 2px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u51803_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. visibility:hidden;
  2300. }
  2301. #u51804 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:0px;
  2307. height:0px;
  2308. }
  2309. #u51805_div {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:88px;
  2315. height:32px;
  2316. background:inherit;
  2317. background-color:rgba(255, 255, 255, 1);
  2318. box-sizing:border-box;
  2319. border-width:1px;
  2320. border-style:solid;
  2321. border-color:rgba(242, 242, 242, 1);
  2322. border-radius:33px;
  2323. filter:drop-shadow(none);
  2324. transition:none;
  2325. }
  2326. #u51805 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:309px;
  2330. top:71px;
  2331. width:88px;
  2332. height:32px;
  2333. display:flex;
  2334. transition:none;
  2335. transform-origin:50% 50%;
  2336. }
  2337. #u51805 .text {
  2338. position:absolute;
  2339. align-self:center;
  2340. padding:2px 2px 2px 2px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u51805_text {
  2345. border-width:0px;
  2346. word-wrap:break-word;
  2347. text-transform:none;
  2348. visibility:hidden;
  2349. }
  2350. #u51806 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:0px;
  2356. height:0px;
  2357. }
  2358. #u51807 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:372px;
  2362. top:78px;
  2363. width:18px;
  2364. height:18px;
  2365. display:flex;
  2366. transition:none;
  2367. }
  2368. #u51807 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 2px 2px 2px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u51807_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:18px;
  2381. height:18px;
  2382. }
  2383. #u51807_text {
  2384. border-width:0px;
  2385. word-wrap:break-word;
  2386. text-transform:none;
  2387. visibility:hidden;
  2388. }
  2389. #u51808 {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:378px;
  2393. top:84px;
  2394. width:6px;
  2395. height:6px;
  2396. display:flex;
  2397. transition:none;
  2398. }
  2399. #u51808 .text {
  2400. position:absolute;
  2401. align-self:center;
  2402. padding:2px 2px 2px 2px;
  2403. box-sizing:border-box;
  2404. width:100%;
  2405. }
  2406. #u51808_img {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:0px;
  2410. top:0px;
  2411. width:6px;
  2412. height:6px;
  2413. }
  2414. #u51808_text {
  2415. border-width:0px;
  2416. word-wrap:break-word;
  2417. text-transform:none;
  2418. visibility:hidden;
  2419. }
  2420. #u51809 {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:0px;
  2426. height:0px;
  2427. }
  2428. #u51810 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:323px;
  2432. top:85px;
  2433. width:5px;
  2434. height:5px;
  2435. display:flex;
  2436. transition:none;
  2437. }
  2438. #u51810 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 2px 2px 2px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u51810_img {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:5px;
  2451. height:5px;
  2452. }
  2453. #u51810_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u51811 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:339px;
  2463. top:85px;
  2464. width:5px;
  2465. height:5px;
  2466. display:flex;
  2467. transition:none;
  2468. }
  2469. #u51811 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:2px 2px 2px 2px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u51811_img {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:5px;
  2482. height:5px;
  2483. }
  2484. #u51811_text {
  2485. border-width:0px;
  2486. word-wrap:break-word;
  2487. text-transform:none;
  2488. visibility:hidden;
  2489. }
  2490. #u51812 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:330px;
  2494. top:84px;
  2495. width:7px;
  2496. height:7px;
  2497. display:flex;
  2498. transition:none;
  2499. }
  2500. #u51812 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:2px 2px 2px 2px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u51812_img {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:7px;
  2513. height:7px;
  2514. }
  2515. #u51812_text {
  2516. border-width:0px;
  2517. word-wrap:break-word;
  2518. text-transform:none;
  2519. visibility:hidden;
  2520. }
  2521. #u51813 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:347px;
  2525. top:87px;
  2526. width:18px;
  2527. height:1px;
  2528. display:flex;
  2529. -webkit-transform:rotate(90deg);
  2530. -moz-transform:rotate(90deg);
  2531. -ms-transform:rotate(90deg);
  2532. transform:rotate(90deg);
  2533. transition:none;
  2534. }
  2535. #u51813 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 2px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u51813_img {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:19px;
  2548. height:2px;
  2549. }
  2550. #u51813_text {
  2551. border-width:0px;
  2552. word-wrap:break-word;
  2553. text-transform:none;
  2554. visibility:hidden;
  2555. }
  2556. #u51814 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:29px;
  2560. top:24px;
  2561. width:375px;
  2562. height:44px;
  2563. display:flex;
  2564. transition:none;
  2565. }
  2566. #u51814 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 2px 2px 2px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u51814_img {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:375px;
  2579. height:44px;
  2580. }
  2581. #u51814_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u51815_div {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:375px;
  2593. height:50px;
  2594. background:inherit;
  2595. background-color:rgba(255, 255, 255, 1);
  2596. box-sizing:border-box;
  2597. border-width:1px;
  2598. border-style:solid;
  2599. border-color:rgba(242, 242, 242, 1);
  2600. border-radius:26px;
  2601. border-top-left-radius:0px;
  2602. border-top-right-radius:0px;
  2603. filter:drop-shadow(none);
  2604. transition:none;
  2605. }
  2606. #u51815 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:29px;
  2610. top:788px;
  2611. width:375px;
  2612. height:50px;
  2613. display:flex;
  2614. transition:none;
  2615. transform-origin:50% 50%;
  2616. }
  2617. #u51815 .text {
  2618. position:absolute;
  2619. align-self:center;
  2620. padding:2px 2px 2px 2px;
  2621. box-sizing:border-box;
  2622. width:100%;
  2623. }
  2624. #u51815_text {
  2625. border-width:0px;
  2626. word-wrap:break-word;
  2627. text-transform:none;
  2628. visibility:hidden;
  2629. }
  2630. #u51816 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:0px;
  2636. height:0px;
  2637. }
  2638. #u51817 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:69px;
  2642. top:792px;
  2643. width:24px;
  2644. height:24px;
  2645. display:flex;
  2646. transition:none;
  2647. font-size:8px;
  2648. }
  2649. #u51817 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:2px 2px 2px 2px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u51817_img {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:24px;
  2662. height:24px;
  2663. }
  2664. #u51817_text {
  2665. border-width:0px;
  2666. word-wrap:break-word;
  2667. text-transform:none;
  2668. }
  2669. #u51818_div {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:25px;
  2675. height:17px;
  2676. background:inherit;
  2677. background-color:rgba(255, 255, 255, 0);
  2678. border-radius:0px;
  2679. filter:drop-shadow(none);
  2680. transition:none;
  2681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2682. font-weight:400;
  2683. font-style:normal;
  2684. font-size:12px;
  2685. }
  2686. #u51818 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:69px;
  2690. top:817px;
  2691. width:25px;
  2692. height:17px;
  2693. display:flex;
  2694. transition:none;
  2695. transform-origin:50% 50%;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. }
  2701. #u51818 .text {
  2702. position:absolute;
  2703. align-self:flex-start;
  2704. padding:0px 0px 0px 0px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u51818_text {
  2709. border-width:0px;
  2710. white-space:nowrap;
  2711. text-transform:none;
  2712. }
  2713. #u51819 {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:0px;
  2719. height:0px;
  2720. }
  2721. #u51820 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:339px;
  2725. top:794px;
  2726. width:24px;
  2727. height:24px;
  2728. display:flex;
  2729. transition:none;
  2730. font-size:8px;
  2731. }
  2732. #u51820 .text {
  2733. position:absolute;
  2734. align-self:center;
  2735. padding:2px 2px 2px 2px;
  2736. box-sizing:border-box;
  2737. width:100%;
  2738. }
  2739. #u51820_img {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:24px;
  2745. height:24px;
  2746. }
  2747. #u51820_text {
  2748. border-width:0px;
  2749. word-wrap:break-word;
  2750. text-transform:none;
  2751. }
  2752. #u51821_div {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:25px;
  2758. height:17px;
  2759. background:inherit;
  2760. background-color:rgba(255, 255, 255, 0);
  2761. border-radius:0px;
  2762. filter:drop-shadow(none);
  2763. transition:none;
  2764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:12px;
  2768. }
  2769. #u51821 {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:339px;
  2773. top:819px;
  2774. width:25px;
  2775. height:17px;
  2776. display:flex;
  2777. transition:none;
  2778. transform-origin:50% 50%;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:12px;
  2783. }
  2784. #u51821 .text {
  2785. position:absolute;
  2786. align-self:flex-start;
  2787. padding:0px 0px 0px 0px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u51821_text {
  2792. border-width:0px;
  2793. white-space:nowrap;
  2794. text-transform:none;
  2795. }
  2796. #u51822_div {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:375px;
  2802. height:681px;
  2803. background:inherit;
  2804. background-color:rgba(242, 242, 242, 0.4627450980392157);
  2805. border-radius:0px;
  2806. filter:drop-shadow(none);
  2807. transition:none;
  2808. }
  2809. #u51822 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:29px;
  2813. top:107px;
  2814. width:375px;
  2815. height:681px;
  2816. display:flex;
  2817. transition:none;
  2818. transform-origin:50% 50%;
  2819. }
  2820. #u51822 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 2px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u51822_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u51823 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:0px;
  2839. height:0px;
  2840. }
  2841. #u51824 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:251px;
  2845. top:792px;
  2846. width:24px;
  2847. height:24px;
  2848. display:flex;
  2849. transition:none;
  2850. font-size:8px;
  2851. }
  2852. #u51824 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 2px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u51824_img {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:24px;
  2865. height:24px;
  2866. }
  2867. #u51824_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. }
  2872. #u51825_div {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:37px;
  2878. height:17px;
  2879. background:inherit;
  2880. background-color:rgba(255, 255, 255, 0);
  2881. border-radius:0px;
  2882. filter:drop-shadow(none);
  2883. transition:none;
  2884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2885. font-weight:400;
  2886. font-style:normal;
  2887. font-size:12px;
  2888. }
  2889. #u51825 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:245px;
  2893. top:817px;
  2894. width:37px;
  2895. height:17px;
  2896. display:flex;
  2897. transition:none;
  2898. transform-origin:50% 50%;
  2899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2900. font-weight:400;
  2901. font-style:normal;
  2902. font-size:12px;
  2903. }
  2904. #u51825 .text {
  2905. position:absolute;
  2906. align-self:flex-start;
  2907. padding:0px 0px 0px 0px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u51825_text {
  2912. border-width:0px;
  2913. white-space:nowrap;
  2914. text-transform:none;
  2915. }
  2916. #u51826 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:0px;
  2922. height:0px;
  2923. }
  2924. #u51827 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:157px;
  2928. top:792px;
  2929. width:24px;
  2930. height:24px;
  2931. display:flex;
  2932. transition:none;
  2933. font-size:8px;
  2934. }
  2935. #u51827 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 2px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u51827_img {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:0px;
  2947. width:24px;
  2948. height:24px;
  2949. }
  2950. #u51827_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. }
  2955. #u51828_div {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:37px;
  2961. height:17px;
  2962. background:inherit;
  2963. background-color:rgba(255, 255, 255, 0);
  2964. border-radius:0px;
  2965. filter:drop-shadow(none);
  2966. transition:none;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:12px;
  2971. }
  2972. #u51828 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:151px;
  2976. top:817px;
  2977. width:37px;
  2978. height:17px;
  2979. display:flex;
  2980. transition:none;
  2981. transform-origin:50% 50%;
  2982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2983. font-weight:400;
  2984. font-style:normal;
  2985. font-size:12px;
  2986. }
  2987. #u51828 .text {
  2988. position:absolute;
  2989. align-self:flex-start;
  2990. padding:0px 0px 0px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u51828_text {
  2995. border-width:0px;
  2996. white-space:nowrap;
  2997. text-transform:none;
  2998. }
  2999. #u51829_div {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:375px;
  3005. height:732px;
  3006. background:inherit;
  3007. background-color:rgba(255, 255, 255, 0.996078431372549);
  3008. border-top:0px;
  3009. border-radius:28px;
  3010. border-top-left-radius:0px;
  3011. border-top-right-radius:0px;
  3012. filter:drop-shadow(none);
  3013. transition:none;
  3014. }
  3015. #u51829 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:494px;
  3019. top:107px;
  3020. width:375px;
  3021. height:732px;
  3022. display:flex;
  3023. transition:none;
  3024. transform-origin:50% 50%;
  3025. }
  3026. #u51829 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 2px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u51829_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u51830_div {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:375px;
  3045. height:394px;
  3046. background:inherit;
  3047. background-color:rgba(255, 255, 255, 1);
  3048. box-sizing:border-box;
  3049. border-width:1px;
  3050. border-style:solid;
  3051. border-color:rgba(215, 215, 215, 1);
  3052. border-left:0px;
  3053. border-top:0px;
  3054. border-right:0px;
  3055. border-radius:0px;
  3056. border-bottom-right-radius:0px;
  3057. border-bottom-left-radius:0px;
  3058. filter:drop-shadow(none);
  3059. transition:none;
  3060. }
  3061. #u51830 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:494px;
  3065. top:67px;
  3066. width:375px;
  3067. height:394px;
  3068. display:flex;
  3069. transition:none;
  3070. transform-origin:50% 50%;
  3071. }
  3072. #u51830 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:2px 2px 2px 2px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u51830_text {
  3080. border-width:0px;
  3081. word-wrap:break-word;
  3082. text-transform:none;
  3083. visibility:hidden;
  3084. }
  3085. #u51831 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:494px;
  3089. top:24px;
  3090. width:375px;
  3091. height:44px;
  3092. display:flex;
  3093. transition:none;
  3094. }
  3095. #u51831 .text {
  3096. position:absolute;
  3097. align-self:center;
  3098. padding:2px 2px 2px 2px;
  3099. box-sizing:border-box;
  3100. width:100%;
  3101. }
  3102. #u51831_img {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:375px;
  3108. height:44px;
  3109. }
  3110. #u51831_text {
  3111. border-width:0px;
  3112. word-wrap:break-word;
  3113. text-transform:none;
  3114. visibility:hidden;
  3115. }
  3116. #u51832 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:0px;
  3122. height:0px;
  3123. }
  3124. #u51833_div {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:88px;
  3130. height:32px;
  3131. background:inherit;
  3132. background-color:rgba(255, 255, 255, 1);
  3133. box-sizing:border-box;
  3134. border-width:1px;
  3135. border-style:solid;
  3136. border-color:rgba(242, 242, 242, 1);
  3137. border-radius:33px;
  3138. filter:drop-shadow(none);
  3139. transition:none;
  3140. }
  3141. #u51833 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:774px;
  3145. top:71px;
  3146. width:88px;
  3147. height:32px;
  3148. display:flex;
  3149. transition:none;
  3150. transform-origin:50% 50%;
  3151. }
  3152. #u51833 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:2px 2px 2px 2px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u51833_text {
  3160. border-width:0px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. visibility:hidden;
  3164. }
  3165. #u51834 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:0px;
  3171. height:0px;
  3172. }
  3173. #u51835 {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:837px;
  3177. top:78px;
  3178. width:18px;
  3179. height:18px;
  3180. display:flex;
  3181. transition:none;
  3182. }
  3183. #u51835 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:2px 2px 2px 2px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u51835_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:18px;
  3196. height:18px;
  3197. }
  3198. #u51835_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. visibility:hidden;
  3203. }
  3204. #u51836 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:843px;
  3208. top:84px;
  3209. width:6px;
  3210. height:6px;
  3211. display:flex;
  3212. transition:none;
  3213. }
  3214. #u51836 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:2px 2px 2px 2px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u51836_img {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:6px;
  3227. height:6px;
  3228. }
  3229. #u51836_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. visibility:hidden;
  3234. }
  3235. #u51837 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:0px;
  3241. height:0px;
  3242. }
  3243. #u51838 {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:788px;
  3247. top:85px;
  3248. width:5px;
  3249. height:5px;
  3250. display:flex;
  3251. transition:none;
  3252. }
  3253. #u51838 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 2px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u51838_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:5px;
  3266. height:5px;
  3267. }
  3268. #u51838_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u51839 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:804px;
  3278. top:85px;
  3279. width:5px;
  3280. height:5px;
  3281. display:flex;
  3282. transition:none;
  3283. }
  3284. #u51839 .text {
  3285. position:absolute;
  3286. align-self:center;
  3287. padding:2px 2px 2px 2px;
  3288. box-sizing:border-box;
  3289. width:100%;
  3290. }
  3291. #u51839_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:5px;
  3297. height:5px;
  3298. }
  3299. #u51839_text {
  3300. border-width:0px;
  3301. word-wrap:break-word;
  3302. text-transform:none;
  3303. visibility:hidden;
  3304. }
  3305. #u51840 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:795px;
  3309. top:84px;
  3310. width:7px;
  3311. height:7px;
  3312. display:flex;
  3313. transition:none;
  3314. }
  3315. #u51840 .text {
  3316. position:absolute;
  3317. align-self:center;
  3318. padding:2px 2px 2px 2px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u51840_img {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:7px;
  3328. height:7px;
  3329. }
  3330. #u51840_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. visibility:hidden;
  3335. }
  3336. #u51841 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:812px;
  3340. top:87px;
  3341. width:18px;
  3342. height:1px;
  3343. display:flex;
  3344. -webkit-transform:rotate(90deg);
  3345. -moz-transform:rotate(90deg);
  3346. -ms-transform:rotate(90deg);
  3347. transform:rotate(90deg);
  3348. transition:none;
  3349. }
  3350. #u51841 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:2px 2px 2px 2px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u51841_img {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:19px;
  3363. height:2px;
  3364. }
  3365. #u51841_text {
  3366. border-width:0px;
  3367. word-wrap:break-word;
  3368. text-transform:none;
  3369. visibility:hidden;
  3370. }
  3371. #u51842_div {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:12px;
  3377. height:12px;
  3378. background:inherit;
  3379. background-color:rgba(255, 255, 255, 0);
  3380. box-sizing:border-box;
  3381. border-width:2px;
  3382. border-style:solid;
  3383. border-color:rgba(51, 51, 51, 1);
  3384. border-right:0px;
  3385. border-bottom:0px;
  3386. border-radius:0px;
  3387. border-top-right-radius:0px;
  3388. border-bottom-left-radius:0px;
  3389. filter:drop-shadow(none);
  3390. transition:none;
  3391. }
  3392. #u51842 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:509px;
  3396. top:81px;
  3397. width:12px;
  3398. height:12px;
  3399. display:flex;
  3400. -webkit-transform:rotate(315deg);
  3401. -moz-transform:rotate(315deg);
  3402. -ms-transform:rotate(315deg);
  3403. transform:rotate(315deg);
  3404. transition:none;
  3405. transform-origin:50% 50%;
  3406. }
  3407. #u51842 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 2px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u51842_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. visibility:hidden;
  3419. }
  3420. #u51843_div {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:375px;
  3426. height:409px;
  3427. background:inherit;
  3428. background-color:rgba(255, 255, 255, 1);
  3429. border-left:0px;
  3430. border-top:0px;
  3431. border-right:0px;
  3432. border-radius:0px;
  3433. border-bottom-right-radius:0px;
  3434. border-bottom-left-radius:0px;
  3435. filter:drop-shadow(none);
  3436. transition:none;
  3437. }
  3438. #u51843 {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:494px;
  3442. top:108px;
  3443. width:375px;
  3444. height:409px;
  3445. display:flex;
  3446. transition:none;
  3447. transform-origin:50% 50%;
  3448. }
  3449. #u51843 .text {
  3450. position:absolute;
  3451. align-self:center;
  3452. padding:2px 2px 2px 2px;
  3453. box-sizing:border-box;
  3454. width:100%;
  3455. }
  3456. #u51843_text {
  3457. border-width:0px;
  3458. word-wrap:break-word;
  3459. text-transform:none;
  3460. visibility:hidden;
  3461. }
  3462. #u51844_div {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:199px;
  3468. height:40px;
  3469. background:inherit;
  3470. background-color:rgba(255, 255, 255, 0);
  3471. border-radius:0px;
  3472. filter:drop-shadow(none);
  3473. transition:none;
  3474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3475. font-style:normal;
  3476. }
  3477. #u51844 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:582px;
  3481. top:176px;
  3482. width:199px;
  3483. height:40px;
  3484. display:flex;
  3485. transition:none;
  3486. transform-origin:50% 50%;
  3487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3488. font-style:normal;
  3489. }
  3490. #u51844 .text {
  3491. position:absolute;
  3492. align-self:flex-start;
  3493. padding:0px 0px 0px 0px;
  3494. box-sizing:border-box;
  3495. width:100%;
  3496. }
  3497. #u51844_text {
  3498. border-width:0px;
  3499. white-space:nowrap;
  3500. text-transform:none;
  3501. }
  3502. #u51845_div {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:73px;
  3508. height:25px;
  3509. background:inherit;
  3510. background-color:rgba(255, 255, 255, 0);
  3511. border-radius:0px;
  3512. filter:drop-shadow(none);
  3513. transition:none;
  3514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3515. font-weight:400;
  3516. font-style:normal;
  3517. font-size:18px;
  3518. }
  3519. #u51845 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:645px;
  3523. top:131px;
  3524. width:73px;
  3525. height:25px;
  3526. display:flex;
  3527. transition:none;
  3528. transform-origin:50% 50%;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:18px;
  3533. }
  3534. #u51845 .text {
  3535. position:absolute;
  3536. align-self:flex-start;
  3537. padding:0px 0px 0px 0px;
  3538. box-sizing:border-box;
  3539. width:100%;
  3540. }
  3541. #u51845_text {
  3542. border-width:0px;
  3543. white-space:nowrap;
  3544. text-transform:none;
  3545. }
  3546. #u51846 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:565px;
  3550. top:229px;
  3551. width:233px;
  3552. height:233px;
  3553. display:flex;
  3554. transition:none;
  3555. }
  3556. #u51846 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 2px 2px 2px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u51846_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:233px;
  3569. height:233px;
  3570. }
  3571. #u51846_text {
  3572. border-width:0px;
  3573. word-wrap:break-word;
  3574. text-transform:none;
  3575. visibility:hidden;
  3576. }
  3577. #u51847_div {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:0px;
  3581. top:0px;
  3582. width:217px;
  3583. height:25px;
  3584. background:inherit;
  3585. background-color:rgba(255, 255, 255, 0);
  3586. border-radius:0px;
  3587. filter:drop-shadow(none);
  3588. transition:none;
  3589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:18px;
  3593. color:#1890FF;
  3594. }
  3595. #u51847 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:573px;
  3599. top:476px;
  3600. width:217px;
  3601. height:25px;
  3602. display:flex;
  3603. transition:none;
  3604. transform-origin:50% 50%;
  3605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:18px;
  3609. color:#1890FF;
  3610. }
  3611. #u51847 .text {
  3612. position:absolute;
  3613. align-self:flex-start;
  3614. padding:0px 0px 0px 0px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u51847_text {
  3619. border-width:0px;
  3620. white-space:nowrap;
  3621. text-transform:none;
  3622. }
  3623. #u51848_div {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:805px;
  3629. height:60px;
  3630. background:inherit;
  3631. background-color:rgba(255, 255, 255, 0);
  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. filter:drop-shadow(none);
  3639. transition:none;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:14px;
  3644. color:#D9001B;
  3645. line-height:30px;
  3646. }
  3647. #u51848 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:35px;
  3651. top:891px;
  3652. width:805px;
  3653. height:60px;
  3654. display:flex;
  3655. transition:none;
  3656. transform-origin:50% 50%;
  3657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. font-size:14px;
  3661. color:#D9001B;
  3662. line-height:30px;
  3663. }
  3664. #u51848 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:0px 0px 0px 0px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u51848_text {
  3672. border-width:0px;
  3673. white-space:nowrap;
  3674. text-transform:none;
  3675. }