styles.css 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:433px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u45769 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u45770 {
  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. #u45770 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u45770_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u45770_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u45771_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. #u45771 {
  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. #u45771 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u45771_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u45772 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u45773_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. #u45773 {
  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. #u45773 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u45773_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u45774 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u45775 {
  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. #u45775 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u45775_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u45775_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u45776 {
  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. #u45776 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u45776_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u45776_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u45777 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u45778 {
  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. #u45778 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u45778_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u45778_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u45779 {
  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. #u45779 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u45779_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u45779_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u45780 {
  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. #u45780 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u45780_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u45780_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u45781 {
  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. #u45781 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u45781_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u45781_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u45782 {
  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. #u45782 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u45782_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u45782_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u45783_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. #u45783 {
  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. #u45783 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u45783_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u45784 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u45785 {
  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. #u45785 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u45785_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u45785_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u45786_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. #u45786 {
  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. #u45786 .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. #u45786_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u45787 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u45788 {
  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. #u45788 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u45788_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u45788_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u45789_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. #u45789 {
  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. #u45789 .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. #u45789_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u45790_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. #u45790 {
  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. #u45790 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u45790_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u45791 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u45792 {
  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. #u45792 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u45792_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u45792_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u45793_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. #u45793 {
  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. #u45793 .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. #u45793_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u45794 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u45795 {
  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. #u45795 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u45795_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u45795_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u45796_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. #u45796 {
  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. #u45796 .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. #u45796_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u45797_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. #u45797 {
  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. #u45797 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u45797_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u45798 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:24px;
  847. width:375px;
  848. height:44px;
  849. display:flex;
  850. transition:none;
  851. }
  852. #u45798 .text {
  853. position:absolute;
  854. align-self:center;
  855. padding:2px 2px 2px 2px;
  856. box-sizing:border-box;
  857. width:100%;
  858. }
  859. #u45798_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:375px;
  865. height:44px;
  866. }
  867. #u45798_text {
  868. border-width:0px;
  869. word-wrap:break-word;
  870. text-transform:none;
  871. visibility:hidden;
  872. }
  873. #u45799 {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:0px;
  879. height:0px;
  880. }
  881. #u45800_div {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:375px;
  887. height:40px;
  888. background:inherit;
  889. background-color:rgba(255, 255, 255, 1);
  890. box-sizing:border-box;
  891. border-width:1px;
  892. border-style:solid;
  893. border-color:rgba(215, 215, 215, 1);
  894. border-left:0px;
  895. border-top:0px;
  896. border-right:0px;
  897. border-radius:0px;
  898. border-bottom-right-radius:0px;
  899. border-bottom-left-radius:0px;
  900. filter:drop-shadow(none);
  901. transition:none;
  902. }
  903. #u45800 {
  904. border-width:0px;
  905. position:absolute;
  906. left:29px;
  907. top:66px;
  908. width:375px;
  909. height:40px;
  910. display:flex;
  911. transition:none;
  912. transform-origin:50% 50%;
  913. }
  914. #u45800 .text {
  915. position:absolute;
  916. align-self:center;
  917. padding:2px 2px 2px 2px;
  918. box-sizing:border-box;
  919. width:100%;
  920. }
  921. #u45800_text {
  922. border-width:0px;
  923. word-wrap:break-word;
  924. text-transform:none;
  925. visibility:hidden;
  926. }
  927. #u45801 {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. }
  935. #u45802_div {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:88px;
  941. height:32px;
  942. background:inherit;
  943. background-color:rgba(255, 255, 255, 1);
  944. box-sizing:border-box;
  945. border-width:1px;
  946. border-style:solid;
  947. border-color:rgba(242, 242, 242, 1);
  948. border-radius:33px;
  949. filter:drop-shadow(none);
  950. transition:none;
  951. }
  952. #u45802 {
  953. border-width:0px;
  954. position:absolute;
  955. left:309px;
  956. top:71px;
  957. width:88px;
  958. height:32px;
  959. display:flex;
  960. transition:none;
  961. transform-origin:50% 50%;
  962. }
  963. #u45802 .text {
  964. position:absolute;
  965. align-self:center;
  966. padding:2px 2px 2px 2px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u45802_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. visibility:hidden;
  975. }
  976. #u45803 {
  977. border-width:0px;
  978. position:absolute;
  979. left:0px;
  980. top:0px;
  981. width:0px;
  982. height:0px;
  983. }
  984. #u45804 {
  985. border-width:0px;
  986. position:absolute;
  987. left:372px;
  988. top:78px;
  989. width:18px;
  990. height:18px;
  991. display:flex;
  992. transition:none;
  993. }
  994. #u45804 .text {
  995. position:absolute;
  996. align-self:center;
  997. padding:2px 2px 2px 2px;
  998. box-sizing:border-box;
  999. width:100%;
  1000. }
  1001. #u45804_img {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:18px;
  1007. height:18px;
  1008. }
  1009. #u45804_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. visibility:hidden;
  1014. }
  1015. #u45805 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:378px;
  1019. top:84px;
  1020. width:6px;
  1021. height:6px;
  1022. display:flex;
  1023. transition:none;
  1024. }
  1025. #u45805 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u45805_img {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:6px;
  1038. height:6px;
  1039. }
  1040. #u45805_text {
  1041. border-width:0px;
  1042. word-wrap:break-word;
  1043. text-transform:none;
  1044. visibility:hidden;
  1045. }
  1046. #u45806 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:0px;
  1050. top:0px;
  1051. width:0px;
  1052. height:0px;
  1053. }
  1054. #u45807 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:323px;
  1058. top:85px;
  1059. width:5px;
  1060. height:5px;
  1061. display:flex;
  1062. transition:none;
  1063. }
  1064. #u45807 .text {
  1065. position:absolute;
  1066. align-self:center;
  1067. padding:2px 2px 2px 2px;
  1068. box-sizing:border-box;
  1069. width:100%;
  1070. }
  1071. #u45807_img {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:5px;
  1077. height:5px;
  1078. }
  1079. #u45807_text {
  1080. border-width:0px;
  1081. word-wrap:break-word;
  1082. text-transform:none;
  1083. visibility:hidden;
  1084. }
  1085. #u45808 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:339px;
  1089. top:85px;
  1090. width:5px;
  1091. height:5px;
  1092. display:flex;
  1093. transition:none;
  1094. }
  1095. #u45808 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u45808_img {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:5px;
  1108. height:5px;
  1109. }
  1110. #u45808_text {
  1111. border-width:0px;
  1112. word-wrap:break-word;
  1113. text-transform:none;
  1114. visibility:hidden;
  1115. }
  1116. #u45809 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:330px;
  1120. top:84px;
  1121. width:7px;
  1122. height:7px;
  1123. display:flex;
  1124. transition:none;
  1125. }
  1126. #u45809 .text {
  1127. position:absolute;
  1128. align-self:center;
  1129. padding:2px 2px 2px 2px;
  1130. box-sizing:border-box;
  1131. width:100%;
  1132. }
  1133. #u45809_img {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:0px;
  1137. top:0px;
  1138. width:7px;
  1139. height:7px;
  1140. }
  1141. #u45809_text {
  1142. border-width:0px;
  1143. word-wrap:break-word;
  1144. text-transform:none;
  1145. visibility:hidden;
  1146. }
  1147. #u45810 {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:347px;
  1151. top:87px;
  1152. width:18px;
  1153. height:1px;
  1154. display:flex;
  1155. -webkit-transform:rotate(90deg);
  1156. -moz-transform:rotate(90deg);
  1157. -ms-transform:rotate(90deg);
  1158. transform:rotate(90deg);
  1159. transition:none;
  1160. }
  1161. #u45810 .text {
  1162. position:absolute;
  1163. align-self:center;
  1164. padding:2px 2px 2px 2px;
  1165. box-sizing:border-box;
  1166. width:100%;
  1167. }
  1168. #u45810_img {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:0px;
  1172. top:0px;
  1173. width:19px;
  1174. height:2px;
  1175. }
  1176. #u45810_text {
  1177. border-width:0px;
  1178. word-wrap:break-word;
  1179. text-transform:none;
  1180. visibility:hidden;
  1181. }
  1182. #u45811_div {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:0px;
  1186. top:0px;
  1187. width:12px;
  1188. height:12px;
  1189. background:inherit;
  1190. background-color:rgba(255, 255, 255, 0);
  1191. box-sizing:border-box;
  1192. border-width:2px;
  1193. border-style:solid;
  1194. border-color:rgba(51, 51, 51, 1);
  1195. border-right:0px;
  1196. border-bottom:0px;
  1197. border-radius:0px;
  1198. border-top-right-radius:0px;
  1199. border-bottom-left-radius:0px;
  1200. filter:drop-shadow(none);
  1201. transition:none;
  1202. }
  1203. #u45811 {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:44px;
  1207. top:80px;
  1208. width:12px;
  1209. height:12px;
  1210. display:flex;
  1211. -webkit-transform:rotate(315deg);
  1212. -moz-transform:rotate(315deg);
  1213. -ms-transform:rotate(315deg);
  1214. transform:rotate(315deg);
  1215. transition:none;
  1216. transform-origin:50% 50%;
  1217. }
  1218. #u45811 .text {
  1219. position:absolute;
  1220. align-self:center;
  1221. padding:2px 2px 2px 2px;
  1222. box-sizing:border-box;
  1223. width:100%;
  1224. }
  1225. #u45811_text {
  1226. border-width:0px;
  1227. word-wrap:break-word;
  1228. text-transform:none;
  1229. visibility:hidden;
  1230. }
  1231. #u45812_div {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:97px;
  1237. height:22px;
  1238. background:inherit;
  1239. background-color:rgba(255, 255, 255, 0);
  1240. border-radius:0px;
  1241. filter:drop-shadow(none);
  1242. transition:none;
  1243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1244. font-weight:400;
  1245. font-style:normal;
  1246. font-size:16px;
  1247. color:#000000;
  1248. }
  1249. #u45812 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:58px;
  1253. top:75px;
  1254. width:97px;
  1255. height:22px;
  1256. display:flex;
  1257. transition:none;
  1258. transform-origin:50% 50%;
  1259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1260. font-weight:400;
  1261. font-style:normal;
  1262. font-size:16px;
  1263. color:#000000;
  1264. }
  1265. #u45812 .text {
  1266. position:absolute;
  1267. align-self:flex-start;
  1268. padding:0px 0px 0px 0px;
  1269. box-sizing:border-box;
  1270. width:100%;
  1271. }
  1272. #u45812_text {
  1273. border-width:0px;
  1274. white-space:nowrap;
  1275. text-transform:none;
  1276. }
  1277. #u45813 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:0px;
  1283. height:0px;
  1284. }
  1285. #u45814_div {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:0px;
  1289. top:0px;
  1290. width:375px;
  1291. height:41px;
  1292. background:inherit;
  1293. background-color:rgba(255, 255, 255, 1);
  1294. border-radius:0px;
  1295. filter:drop-shadow(none);
  1296. transition:none;
  1297. }
  1298. #u45814 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:29px;
  1302. top:156px;
  1303. width:375px;
  1304. height:41px;
  1305. display:flex;
  1306. transition:none;
  1307. transform-origin:50% 50%;
  1308. }
  1309. #u45814 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u45814_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u45815_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:37px;
  1328. height:40px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border-left:0px;
  1332. border-top:0px;
  1333. border-right:0px;
  1334. border-radius:0px;
  1335. border-bottom-right-radius:0px;
  1336. border-bottom-left-radius:0px;
  1337. filter:drop-shadow(none);
  1338. transition:none;
  1339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1340. font-weight:400;
  1341. font-style:normal;
  1342. font-size:12px;
  1343. text-align:center;
  1344. }
  1345. #u45815 {
  1346. border-width:0px;
  1347. position:absolute;
  1348. left:111px;
  1349. top:156px;
  1350. width:37px;
  1351. height:40px;
  1352. display:flex;
  1353. transition:none;
  1354. transform-origin:50% 50%;
  1355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1356. font-weight:400;
  1357. font-style:normal;
  1358. font-size:12px;
  1359. text-align:center;
  1360. }
  1361. #u45815 .text {
  1362. position:absolute;
  1363. align-self:center;
  1364. padding:0px 0px 0px 0px;
  1365. box-sizing:border-box;
  1366. width:100%;
  1367. }
  1368. #u45815_text {
  1369. border-width:0px;
  1370. white-space:nowrap;
  1371. text-transform:none;
  1372. }
  1373. #u45816_div {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:0px;
  1377. top:0px;
  1378. width:37px;
  1379. height:40px;
  1380. background:inherit;
  1381. background-color:rgba(255, 255, 255, 0);
  1382. box-sizing:border-box;
  1383. border-width:2px;
  1384. border-style:solid;
  1385. border-color:rgba(24, 144, 255, 1);
  1386. border-left:0px;
  1387. border-top:0px;
  1388. border-right:0px;
  1389. border-radius:0px;
  1390. border-bottom-right-radius:0px;
  1391. border-bottom-left-radius:0px;
  1392. filter:drop-shadow(none);
  1393. transition:none;
  1394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1395. font-weight:400;
  1396. font-style:normal;
  1397. font-size:12px;
  1398. color:#1890FF;
  1399. text-align:center;
  1400. }
  1401. #u45816 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:45px;
  1405. top:156px;
  1406. width:37px;
  1407. height:40px;
  1408. display:flex;
  1409. transition:none;
  1410. transform-origin:50% 50%;
  1411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1412. font-weight:400;
  1413. font-style:normal;
  1414. font-size:12px;
  1415. color:#1890FF;
  1416. text-align:center;
  1417. }
  1418. #u45816 .text {
  1419. position:absolute;
  1420. align-self:center;
  1421. padding:0px 0px 0px 0px;
  1422. box-sizing:border-box;
  1423. width:100%;
  1424. }
  1425. #u45816_text {
  1426. border-width:0px;
  1427. white-space:nowrap;
  1428. text-transform:none;
  1429. }
  1430. #u45817_div {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:11px;
  1436. height:11px;
  1437. background:inherit;
  1438. background-color:rgba(217, 0, 27, 1);
  1439. border-radius:7px;
  1440. filter:drop-shadow(none);
  1441. transition:none;
  1442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1443. font-weight:400;
  1444. font-style:normal;
  1445. font-size:8px;
  1446. color:#FFFFFF;
  1447. text-align:center;
  1448. }
  1449. #u45817 {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:79px;
  1453. top:160px;
  1454. width:11px;
  1455. height:11px;
  1456. display:flex;
  1457. transition:none;
  1458. transform-origin:50% 50%;
  1459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1460. font-weight:400;
  1461. font-style:normal;
  1462. font-size:8px;
  1463. color:#FFFFFF;
  1464. text-align:center;
  1465. }
  1466. #u45817 .text {
  1467. position:absolute;
  1468. align-self:flex-start;
  1469. padding:0px 0px 0px 0px;
  1470. box-sizing:border-box;
  1471. width:100%;
  1472. }
  1473. #u45817_text {
  1474. border-width:0px;
  1475. word-wrap:break-word;
  1476. text-transform:none;
  1477. }
  1478. #u45818_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:37px;
  1484. height:40px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border-left:0px;
  1488. border-top:0px;
  1489. border-right:0px;
  1490. border-radius:0px;
  1491. border-bottom-right-radius:0px;
  1492. border-bottom-left-radius:0px;
  1493. filter:drop-shadow(none);
  1494. transition:none;
  1495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1496. font-weight:400;
  1497. font-style:normal;
  1498. font-size:12px;
  1499. text-align:center;
  1500. }
  1501. #u45818 {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:178px;
  1505. top:156px;
  1506. width:37px;
  1507. height:40px;
  1508. display:flex;
  1509. transition:none;
  1510. transform-origin:50% 50%;
  1511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1512. font-weight:400;
  1513. font-style:normal;
  1514. font-size:12px;
  1515. text-align:center;
  1516. }
  1517. #u45818 .text {
  1518. position:absolute;
  1519. align-self:center;
  1520. padding:0px 0px 0px 0px;
  1521. box-sizing:border-box;
  1522. width:100%;
  1523. }
  1524. #u45818_text {
  1525. border-width:0px;
  1526. white-space:nowrap;
  1527. text-transform:none;
  1528. }
  1529. #u45819_div {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:37px;
  1535. height:40px;
  1536. background:inherit;
  1537. background-color:rgba(255, 255, 255, 0);
  1538. border-left:0px;
  1539. border-top:0px;
  1540. border-right:0px;
  1541. border-radius:0px;
  1542. border-bottom-right-radius:0px;
  1543. border-bottom-left-radius:0px;
  1544. filter:drop-shadow(none);
  1545. transition:none;
  1546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1547. font-weight:400;
  1548. font-style:normal;
  1549. font-size:12px;
  1550. text-align:center;
  1551. }
  1552. #u45819 {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:245px;
  1556. top:156px;
  1557. width:37px;
  1558. height:40px;
  1559. display:flex;
  1560. transition:none;
  1561. transform-origin:50% 50%;
  1562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1563. font-weight:400;
  1564. font-style:normal;
  1565. font-size:12px;
  1566. text-align:center;
  1567. }
  1568. #u45819 .text {
  1569. position:absolute;
  1570. align-self:center;
  1571. padding:0px 0px 0px 0px;
  1572. box-sizing:border-box;
  1573. width:100%;
  1574. }
  1575. #u45819_text {
  1576. border-width:0px;
  1577. white-space:nowrap;
  1578. text-transform:none;
  1579. }
  1580. #u45820 {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:0px;
  1586. height:0px;
  1587. }
  1588. #u45821_div {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:375px;
  1594. height:50px;
  1595. background:inherit;
  1596. background-color:rgba(255, 255, 255, 1);
  1597. border-radius:0px;
  1598. filter:drop-shadow(none);
  1599. transition:none;
  1600. }
  1601. #u45821 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:29px;
  1605. top:107px;
  1606. width:375px;
  1607. height:50px;
  1608. display:flex;
  1609. transition:none;
  1610. transform-origin:50% 50%;
  1611. }
  1612. #u45821 .text {
  1613. position:absolute;
  1614. align-self:center;
  1615. padding:2px 2px 2px 2px;
  1616. box-sizing:border-box;
  1617. width:100%;
  1618. }
  1619. #u45821_text {
  1620. border-width:0px;
  1621. word-wrap:break-word;
  1622. text-transform:none;
  1623. visibility:hidden;
  1624. }
  1625. #u45822 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:0px;
  1631. height:0px;
  1632. }
  1633. #u45823 {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:0px;
  1639. height:0px;
  1640. }
  1641. #u45824_div {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:283px;
  1647. height:30px;
  1648. background:inherit;
  1649. background-color:rgba(242, 242, 242, 1);
  1650. border-radius:20px;
  1651. filter:drop-shadow(none);
  1652. transition:none;
  1653. }
  1654. #u45824 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:42px;
  1658. top:117px;
  1659. width:283px;
  1660. height:30px;
  1661. display:flex;
  1662. transition:none;
  1663. transform-origin:50% 50%;
  1664. }
  1665. #u45824 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u45824_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u45825_input {
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:253px;
  1683. height:22px;
  1684. padding:2px 2px 2px 2px;
  1685. font-family:'ArialMT', 'Arial', sans-serif;
  1686. font-weight:400;
  1687. font-style:normal;
  1688. font-size:12px;
  1689. letter-spacing:normal;
  1690. color:#7F7F7F;
  1691. vertical-align:none;
  1692. text-align:left;
  1693. text-transform:none;
  1694. background-color:transparent;
  1695. border-color:transparent;
  1696. }
  1697. #u45825_input.disabled {
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:253px;
  1702. height:22px;
  1703. padding:2px 2px 2px 2px;
  1704. font-family:'ArialMT', 'Arial', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. font-size:12px;
  1708. letter-spacing:normal;
  1709. color:#7F7F7F;
  1710. vertical-align:none;
  1711. text-align:left;
  1712. text-transform:none;
  1713. background-color:transparent;
  1714. border-color:transparent;
  1715. }
  1716. #u45825_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:253px;
  1722. height:22px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 255, 0);
  1725. border-radius:0px;
  1726. filter:drop-shadow(none);
  1727. transition:none;
  1728. font-size:12px;
  1729. color:#7F7F7F;
  1730. }
  1731. #u45825 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:57px;
  1735. top:121px;
  1736. width:253px;
  1737. height:22px;
  1738. display:flex;
  1739. transition:none;
  1740. transform-origin:50% 50%;
  1741. font-size:12px;
  1742. color:#7F7F7F;
  1743. }
  1744. #u45825 .text {
  1745. position:absolute;
  1746. align-self:flex-start;
  1747. padding:2px 2px 2px 2px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u45825_div.disabled {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:253px;
  1757. height:22px;
  1758. background:inherit;
  1759. background-color:rgba(240, 240, 240, 1);
  1760. border-radius:0px;
  1761. filter:drop-shadow(none);
  1762. transition:none;
  1763. font-size:12px;
  1764. color:#7F7F7F;
  1765. }
  1766. #u45825.disabled {
  1767. }
  1768. .u45825_input_option {
  1769. font-size:12px;
  1770. }
  1771. #u45826_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:64px;
  1777. height:30px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border-left:0px;
  1781. border-top:0px;
  1782. border-right:0px;
  1783. border-radius:0px;
  1784. border-bottom-right-radius:0px;
  1785. border-bottom-left-radius:0px;
  1786. filter:drop-shadow(none);
  1787. transition:none;
  1788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. font-size:12px;
  1792. color:#1890FF;
  1793. line-height:30px;
  1794. }
  1795. #u45826 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:332px;
  1799. top:117px;
  1800. width:64px;
  1801. height:30px;
  1802. display:flex;
  1803. transition:none;
  1804. transform-origin:50% 50%;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:12px;
  1809. color:#1890FF;
  1810. line-height:30px;
  1811. }
  1812. #u45826 .text {
  1813. position:absolute;
  1814. align-self:flex-start;
  1815. padding:0px 0px 0px 0px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u45826_text {
  1820. border-width:0px;
  1821. white-space:nowrap;
  1822. text-transform:none;
  1823. }
  1824. #u45827 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:0px;
  1830. height:0px;
  1831. }
  1832. #u45828_div {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:355px;
  1838. height:140px;
  1839. background:inherit;
  1840. background-color:rgba(255, 255, 255, 1);
  1841. border-radius:4px;
  1842. filter:drop-shadow(none);
  1843. transition:none;
  1844. }
  1845. #u45828 {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:39px;
  1849. top:207px;
  1850. width:355px;
  1851. height:140px;
  1852. display:flex;
  1853. transition:none;
  1854. transform-origin:50% 50%;
  1855. }
  1856. #u45828 .text {
  1857. position:absolute;
  1858. align-self:center;
  1859. padding:2px 2px 2px 2px;
  1860. box-sizing:border-box;
  1861. width:100%;
  1862. }
  1863. #u45828_text {
  1864. border-width:0px;
  1865. word-wrap:break-word;
  1866. text-transform:none;
  1867. visibility:hidden;
  1868. }
  1869. #u45829_div {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:29px;
  1875. height:30px;
  1876. background:inherit;
  1877. background-color:rgba(255, 255, 255, 0);
  1878. border-left:0px;
  1879. border-top:0px;
  1880. border-right:0px;
  1881. border-radius:0px;
  1882. border-bottom-right-radius:0px;
  1883. border-bottom-left-radius:0px;
  1884. filter:drop-shadow(none);
  1885. transition:none;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:14px;
  1890. line-height:30px;
  1891. }
  1892. #u45829 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:55px;
  1896. top:246px;
  1897. width:29px;
  1898. height:30px;
  1899. display:flex;
  1900. transition:none;
  1901. transform-origin:50% 50%;
  1902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1903. font-weight:400;
  1904. font-style:normal;
  1905. font-size:14px;
  1906. line-height:30px;
  1907. }
  1908. #u45829 .text {
  1909. position:absolute;
  1910. align-self:flex-start;
  1911. padding:0px 0px 0px 0px;
  1912. box-sizing:border-box;
  1913. width:100%;
  1914. }
  1915. #u45829_text {
  1916. border-width:0px;
  1917. white-space:nowrap;
  1918. text-transform:none;
  1919. }
  1920. #u45830_div {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:97px;
  1926. height:17px;
  1927. background:inherit;
  1928. background-color:rgba(255, 255, 255, 0);
  1929. border-left:0px;
  1930. border-top:0px;
  1931. border-right:0px;
  1932. border-radius:0px;
  1933. border-bottom-right-radius:0px;
  1934. border-bottom-left-radius:0px;
  1935. filter:drop-shadow(none);
  1936. transition:none;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. color:#AAAAAA;
  1942. }
  1943. #u45830 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:55px;
  1947. top:276px;
  1948. width:97px;
  1949. height:17px;
  1950. display:flex;
  1951. transition:none;
  1952. transform-origin:50% 50%;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:12px;
  1957. color:#AAAAAA;
  1958. }
  1959. #u45830 .text {
  1960. position:absolute;
  1961. align-self:flex-start;
  1962. padding:0px 0px 0px 0px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u45830_text {
  1967. border-width:0px;
  1968. white-space:nowrap;
  1969. text-transform:none;
  1970. }
  1971. #u45831 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:0px;
  1977. height:0px;
  1978. }
  1979. #u45832_div {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:128px;
  1985. height:30px;
  1986. background:inherit;
  1987. background-color:rgba(255, 255, 255, 0);
  1988. border-left:0px;
  1989. border-top:0px;
  1990. border-right:0px;
  1991. border-radius:0px;
  1992. border-bottom-right-radius:0px;
  1993. border-bottom-left-radius:0px;
  1994. filter:drop-shadow(none);
  1995. transition:none;
  1996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:12px;
  2000. color:#AAAAAA;
  2001. line-height:30px;
  2002. }
  2003. #u45832 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:55px;
  2007. top:216px;
  2008. width:128px;
  2009. height:30px;
  2010. display:flex;
  2011. transition:none;
  2012. transform-origin:50% 50%;
  2013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2014. font-weight:400;
  2015. font-style:normal;
  2016. font-size:12px;
  2017. color:#AAAAAA;
  2018. line-height:30px;
  2019. }
  2020. #u45832 .text {
  2021. position:absolute;
  2022. align-self:center;
  2023. padding:0px 0px 0px 0px;
  2024. box-sizing:border-box;
  2025. width:100%;
  2026. }
  2027. #u45832_text {
  2028. border-width:0px;
  2029. white-space:nowrap;
  2030. text-transform:none;
  2031. }
  2032. #u45833_div {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:8px;
  2038. height:8px;
  2039. background:inherit;
  2040. background-color:rgba(255, 255, 255, 0);
  2041. box-sizing:border-box;
  2042. border-width:1px;
  2043. border-style:solid;
  2044. border-color:rgba(51, 51, 51, 1);
  2045. border-right:0px;
  2046. border-bottom:0px;
  2047. border-radius:0px;
  2048. border-top-right-radius:0px;
  2049. border-bottom-left-radius:0px;
  2050. filter:drop-shadow(none);
  2051. transition:none;
  2052. }
  2053. #u45833 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:372px;
  2057. top:227px;
  2058. width:8px;
  2059. height:8px;
  2060. display:flex;
  2061. -webkit-transform:rotate(135deg);
  2062. -moz-transform:rotate(135deg);
  2063. -ms-transform:rotate(135deg);
  2064. transform:rotate(135deg);
  2065. transition:none;
  2066. transform-origin:50% 50%;
  2067. }
  2068. #u45833 .text {
  2069. position:absolute;
  2070. align-self:center;
  2071. padding:2px 2px 2px 2px;
  2072. box-sizing:border-box;
  2073. width:100%;
  2074. }
  2075. #u45833_text {
  2076. border-width:0px;
  2077. word-wrap:break-word;
  2078. text-transform:none;
  2079. visibility:hidden;
  2080. }
  2081. #u45834_div {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:203px;
  2087. height:34px;
  2088. background:inherit;
  2089. background-color:rgba(255, 255, 255, 0);
  2090. border-left:0px;
  2091. border-top:0px;
  2092. border-right:0px;
  2093. border-radius:0px;
  2094. border-bottom-right-radius:0px;
  2095. border-bottom-left-radius:0px;
  2096. filter:drop-shadow(none);
  2097. transition:none;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:12px;
  2102. }
  2103. #u45834 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:55px;
  2107. top:303px;
  2108. width:203px;
  2109. height:34px;
  2110. display:flex;
  2111. transition:none;
  2112. transform-origin:50% 50%;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:12px;
  2117. }
  2118. #u45834 .text {
  2119. position:absolute;
  2120. align-self:flex-start;
  2121. padding:0px 0px 0px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u45834_text {
  2126. border-width:0px;
  2127. white-space:nowrap;
  2128. text-transform:none;
  2129. }
  2130. #u45835_div {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:48px;
  2136. height:14px;
  2137. background:inherit;
  2138. background-color:rgba(24, 144, 255, 1);
  2139. border-radius:0px;
  2140. filter:drop-shadow(none);
  2141. transition:none;
  2142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. font-size:10px;
  2146. color:#FFFFFF;
  2147. text-align:center;
  2148. }
  2149. #u45835 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:100px;
  2153. top:254px;
  2154. width:48px;
  2155. height:14px;
  2156. display:flex;
  2157. transition:none;
  2158. transform-origin:50% 50%;
  2159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:10px;
  2163. color:#FFFFFF;
  2164. text-align:center;
  2165. }
  2166. #u45835 .text {
  2167. position:absolute;
  2168. align-self:flex-start;
  2169. padding:0px 0px 0px 0px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u45835_text {
  2174. border-width:0px;
  2175. word-wrap:break-word;
  2176. text-transform:none;
  2177. }
  2178. #u45836 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:306px;
  2182. top:258px;
  2183. width:70px;
  2184. height:69px;
  2185. display:flex;
  2186. transition:none;
  2187. }
  2188. #u45836 .text {
  2189. position:absolute;
  2190. align-self:center;
  2191. padding:2px 2px 2px 2px;
  2192. box-sizing:border-box;
  2193. width:100%;
  2194. }
  2195. #u45836_img {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:70px;
  2201. height:69px;
  2202. }
  2203. #u45836_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. visibility:hidden;
  2208. }
  2209. #u45837 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:0px;
  2215. height:0px;
  2216. }
  2217. #u45838_div {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:355px;
  2223. height:140px;
  2224. background:inherit;
  2225. background-color:rgba(255, 255, 255, 1);
  2226. border-radius:4px;
  2227. filter:drop-shadow(none);
  2228. transition:none;
  2229. }
  2230. #u45838 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:39px;
  2234. top:357px;
  2235. width:355px;
  2236. height:140px;
  2237. display:flex;
  2238. transition:none;
  2239. transform-origin:50% 50%;
  2240. }
  2241. #u45838 .text {
  2242. position:absolute;
  2243. align-self:center;
  2244. padding:2px 2px 2px 2px;
  2245. box-sizing:border-box;
  2246. width:100%;
  2247. }
  2248. #u45838_text {
  2249. border-width:0px;
  2250. word-wrap:break-word;
  2251. text-transform:none;
  2252. visibility:hidden;
  2253. }
  2254. #u45839_div {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:29px;
  2260. height:30px;
  2261. background:inherit;
  2262. background-color:rgba(255, 255, 255, 0);
  2263. border-left:0px;
  2264. border-top:0px;
  2265. border-right:0px;
  2266. border-radius:0px;
  2267. border-bottom-right-radius:0px;
  2268. border-bottom-left-radius:0px;
  2269. filter:drop-shadow(none);
  2270. transition:none;
  2271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2272. font-weight:400;
  2273. font-style:normal;
  2274. font-size:14px;
  2275. line-height:30px;
  2276. }
  2277. #u45839 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:55px;
  2281. top:396px;
  2282. width:29px;
  2283. height:30px;
  2284. display:flex;
  2285. transition:none;
  2286. transform-origin:50% 50%;
  2287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:14px;
  2291. line-height:30px;
  2292. }
  2293. #u45839 .text {
  2294. position:absolute;
  2295. align-self:flex-start;
  2296. padding:0px 0px 0px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u45839_text {
  2301. border-width:0px;
  2302. white-space:nowrap;
  2303. text-transform:none;
  2304. }
  2305. #u45840_div {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:97px;
  2311. height:17px;
  2312. background:inherit;
  2313. background-color:rgba(255, 255, 255, 0);
  2314. border-left:0px;
  2315. border-top:0px;
  2316. border-right:0px;
  2317. border-radius:0px;
  2318. border-bottom-right-radius:0px;
  2319. border-bottom-left-radius:0px;
  2320. filter:drop-shadow(none);
  2321. transition:none;
  2322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:12px;
  2326. color:#AAAAAA;
  2327. }
  2328. #u45840 {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:55px;
  2332. top:426px;
  2333. width:97px;
  2334. height:17px;
  2335. display:flex;
  2336. transition:none;
  2337. transform-origin:50% 50%;
  2338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2339. font-weight:400;
  2340. font-style:normal;
  2341. font-size:12px;
  2342. color:#AAAAAA;
  2343. }
  2344. #u45840 .text {
  2345. position:absolute;
  2346. align-self:flex-start;
  2347. padding:0px 0px 0px 0px;
  2348. box-sizing:border-box;
  2349. width:100%;
  2350. }
  2351. #u45840_text {
  2352. border-width:0px;
  2353. white-space:nowrap;
  2354. text-transform:none;
  2355. }
  2356. #u45841 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:0px;
  2362. height:0px;
  2363. }
  2364. #u45842_div {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:128px;
  2370. height:30px;
  2371. background:inherit;
  2372. background-color:rgba(255, 255, 255, 0);
  2373. border-left:0px;
  2374. border-top:0px;
  2375. border-right:0px;
  2376. border-radius:0px;
  2377. border-bottom-right-radius:0px;
  2378. border-bottom-left-radius:0px;
  2379. filter:drop-shadow(none);
  2380. transition:none;
  2381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:12px;
  2385. color:#AAAAAA;
  2386. line-height:30px;
  2387. }
  2388. #u45842 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:55px;
  2392. top:366px;
  2393. width:128px;
  2394. height:30px;
  2395. display:flex;
  2396. transition:none;
  2397. transform-origin:50% 50%;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:12px;
  2402. color:#AAAAAA;
  2403. line-height:30px;
  2404. }
  2405. #u45842 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:0px 0px 0px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u45842_text {
  2413. border-width:0px;
  2414. white-space:nowrap;
  2415. text-transform:none;
  2416. }
  2417. #u45843_div {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:8px;
  2423. height:8px;
  2424. background:inherit;
  2425. background-color:rgba(255, 255, 255, 0);
  2426. box-sizing:border-box;
  2427. border-width:1px;
  2428. border-style:solid;
  2429. border-color:rgba(51, 51, 51, 1);
  2430. border-right:0px;
  2431. border-bottom:0px;
  2432. border-radius:0px;
  2433. border-top-right-radius:0px;
  2434. border-bottom-left-radius:0px;
  2435. filter:drop-shadow(none);
  2436. transition:none;
  2437. }
  2438. #u45843 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:372px;
  2442. top:377px;
  2443. width:8px;
  2444. height:8px;
  2445. display:flex;
  2446. -webkit-transform:rotate(135deg);
  2447. -moz-transform:rotate(135deg);
  2448. -ms-transform:rotate(135deg);
  2449. transform:rotate(135deg);
  2450. transition:none;
  2451. transform-origin:50% 50%;
  2452. }
  2453. #u45843 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:2px 2px 2px 2px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u45843_text {
  2461. border-width:0px;
  2462. word-wrap:break-word;
  2463. text-transform:none;
  2464. visibility:hidden;
  2465. }
  2466. #u45844_div {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:203px;
  2472. height:34px;
  2473. background:inherit;
  2474. background-color:rgba(255, 255, 255, 0);
  2475. border-left:0px;
  2476. border-top:0px;
  2477. border-right:0px;
  2478. border-radius:0px;
  2479. border-bottom-right-radius:0px;
  2480. border-bottom-left-radius:0px;
  2481. filter:drop-shadow(none);
  2482. transition:none;
  2483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. font-size:12px;
  2487. }
  2488. #u45844 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:55px;
  2492. top:453px;
  2493. width:203px;
  2494. height:34px;
  2495. display:flex;
  2496. transition:none;
  2497. transform-origin:50% 50%;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:12px;
  2502. }
  2503. #u45844 .text {
  2504. position:absolute;
  2505. align-self:flex-start;
  2506. padding:0px 0px 0px 0px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u45844_text {
  2511. border-width:0px;
  2512. white-space:nowrap;
  2513. text-transform:none;
  2514. }
  2515. #u45845_div {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:48px;
  2521. height:14px;
  2522. background:inherit;
  2523. background-color:rgba(0, 191, 191, 1);
  2524. border-radius:0px;
  2525. filter:drop-shadow(none);
  2526. transition:none;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:10px;
  2531. color:#FFFFFF;
  2532. text-align:center;
  2533. }
  2534. #u45845 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:100px;
  2538. top:404px;
  2539. width:48px;
  2540. height:14px;
  2541. display:flex;
  2542. transition:none;
  2543. transform-origin:50% 50%;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:10px;
  2548. color:#FFFFFF;
  2549. text-align:center;
  2550. }
  2551. #u45845 .text {
  2552. position:absolute;
  2553. align-self:flex-start;
  2554. padding:0px 0px 0px 0px;
  2555. box-sizing:border-box;
  2556. width:100%;
  2557. }
  2558. #u45845_text {
  2559. border-width:0px;
  2560. word-wrap:break-word;
  2561. text-transform:none;
  2562. }
  2563. #u45846 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:306px;
  2567. top:404px;
  2568. width:70px;
  2569. height:69px;
  2570. display:flex;
  2571. transition:none;
  2572. }
  2573. #u45846 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 2px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u45846_img {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:70px;
  2586. height:69px;
  2587. }
  2588. #u45846_text {
  2589. border-width:0px;
  2590. word-wrap:break-word;
  2591. text-transform:none;
  2592. visibility:hidden;
  2593. }
  2594. #u45847 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:0px;
  2600. height:0px;
  2601. }
  2602. #u45848_div {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:0px;
  2606. top:0px;
  2607. width:355px;
  2608. height:140px;
  2609. background:inherit;
  2610. background-color:rgba(255, 255, 255, 1);
  2611. border-radius:4px;
  2612. filter:drop-shadow(none);
  2613. transition:none;
  2614. }
  2615. #u45848 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:39px;
  2619. top:507px;
  2620. width:355px;
  2621. height:140px;
  2622. display:flex;
  2623. transition:none;
  2624. transform-origin:50% 50%;
  2625. }
  2626. #u45848 .text {
  2627. position:absolute;
  2628. align-self:center;
  2629. padding:2px 2px 2px 2px;
  2630. box-sizing:border-box;
  2631. width:100%;
  2632. }
  2633. #u45848_text {
  2634. border-width:0px;
  2635. word-wrap:break-word;
  2636. text-transform:none;
  2637. visibility:hidden;
  2638. }
  2639. #u45849_div {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:29px;
  2645. height:30px;
  2646. background:inherit;
  2647. background-color:rgba(255, 255, 255, 0);
  2648. border-left:0px;
  2649. border-top:0px;
  2650. border-right:0px;
  2651. border-radius:0px;
  2652. border-bottom-right-radius:0px;
  2653. border-bottom-left-radius:0px;
  2654. filter:drop-shadow(none);
  2655. transition:none;
  2656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2657. font-weight:400;
  2658. font-style:normal;
  2659. font-size:14px;
  2660. line-height:30px;
  2661. }
  2662. #u45849 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:55px;
  2666. top:546px;
  2667. width:29px;
  2668. height:30px;
  2669. display:flex;
  2670. transition:none;
  2671. transform-origin:50% 50%;
  2672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:14px;
  2676. line-height:30px;
  2677. }
  2678. #u45849 .text {
  2679. position:absolute;
  2680. align-self:flex-start;
  2681. padding:0px 0px 0px 0px;
  2682. box-sizing:border-box;
  2683. width:100%;
  2684. }
  2685. #u45849_text {
  2686. border-width:0px;
  2687. white-space:nowrap;
  2688. text-transform:none;
  2689. }
  2690. #u45850_div {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:97px;
  2696. height:17px;
  2697. background:inherit;
  2698. background-color:rgba(255, 255, 255, 0);
  2699. border-left:0px;
  2700. border-top:0px;
  2701. border-right:0px;
  2702. border-radius:0px;
  2703. border-bottom-right-radius:0px;
  2704. border-bottom-left-radius:0px;
  2705. filter:drop-shadow(none);
  2706. transition:none;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:12px;
  2711. color:#AAAAAA;
  2712. }
  2713. #u45850 {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:55px;
  2717. top:576px;
  2718. width:97px;
  2719. height:17px;
  2720. display:flex;
  2721. transition:none;
  2722. transform-origin:50% 50%;
  2723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:12px;
  2727. color:#AAAAAA;
  2728. }
  2729. #u45850 .text {
  2730. position:absolute;
  2731. align-self:flex-start;
  2732. padding:0px 0px 0px 0px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u45850_text {
  2737. border-width:0px;
  2738. white-space:nowrap;
  2739. text-transform:none;
  2740. }
  2741. #u45851 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:0px;
  2747. height:0px;
  2748. }
  2749. #u45852_div {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:128px;
  2755. height:30px;
  2756. background:inherit;
  2757. background-color:rgba(255, 255, 255, 0);
  2758. border-left:0px;
  2759. border-top:0px;
  2760. border-right:0px;
  2761. border-radius:0px;
  2762. border-bottom-right-radius:0px;
  2763. border-bottom-left-radius:0px;
  2764. filter:drop-shadow(none);
  2765. transition:none;
  2766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:12px;
  2770. color:#AAAAAA;
  2771. line-height:30px;
  2772. }
  2773. #u45852 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:55px;
  2777. top:516px;
  2778. width:128px;
  2779. height:30px;
  2780. display:flex;
  2781. transition:none;
  2782. transform-origin:50% 50%;
  2783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:12px;
  2787. color:#AAAAAA;
  2788. line-height:30px;
  2789. }
  2790. #u45852 .text {
  2791. position:absolute;
  2792. align-self:center;
  2793. padding:0px 0px 0px 0px;
  2794. box-sizing:border-box;
  2795. width:100%;
  2796. }
  2797. #u45852_text {
  2798. border-width:0px;
  2799. white-space:nowrap;
  2800. text-transform:none;
  2801. }
  2802. #u45853_div {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:8px;
  2808. height:8px;
  2809. background:inherit;
  2810. background-color:rgba(255, 255, 255, 0);
  2811. box-sizing:border-box;
  2812. border-width:1px;
  2813. border-style:solid;
  2814. border-color:rgba(51, 51, 51, 1);
  2815. border-right:0px;
  2816. border-bottom:0px;
  2817. border-radius:0px;
  2818. border-top-right-radius:0px;
  2819. border-bottom-left-radius:0px;
  2820. filter:drop-shadow(none);
  2821. transition:none;
  2822. }
  2823. #u45853 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:372px;
  2827. top:527px;
  2828. width:8px;
  2829. height:8px;
  2830. display:flex;
  2831. -webkit-transform:rotate(135deg);
  2832. -moz-transform:rotate(135deg);
  2833. -ms-transform:rotate(135deg);
  2834. transform:rotate(135deg);
  2835. transition:none;
  2836. transform-origin:50% 50%;
  2837. }
  2838. #u45853 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 2px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u45853_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. visibility:hidden;
  2850. }
  2851. #u45854_div {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:203px;
  2857. height:34px;
  2858. background:inherit;
  2859. background-color:rgba(255, 255, 255, 0);
  2860. border-left:0px;
  2861. border-top:0px;
  2862. border-right:0px;
  2863. border-radius:0px;
  2864. border-bottom-right-radius:0px;
  2865. border-bottom-left-radius:0px;
  2866. filter:drop-shadow(none);
  2867. transition:none;
  2868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2869. font-weight:400;
  2870. font-style:normal;
  2871. font-size:12px;
  2872. }
  2873. #u45854 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:55px;
  2877. top:603px;
  2878. width:203px;
  2879. height:34px;
  2880. display:flex;
  2881. transition:none;
  2882. transform-origin:50% 50%;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. }
  2888. #u45854 .text {
  2889. position:absolute;
  2890. align-self:flex-start;
  2891. padding:0px 0px 0px 0px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u45854_text {
  2896. border-width:0px;
  2897. white-space:nowrap;
  2898. text-transform:none;
  2899. }
  2900. #u45855_div {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:48px;
  2906. height:14px;
  2907. background:inherit;
  2908. background-color:rgba(132, 0, 255, 1);
  2909. border-radius:0px;
  2910. filter:drop-shadow(none);
  2911. transition:none;
  2912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2913. font-weight:400;
  2914. font-style:normal;
  2915. font-size:10px;
  2916. color:#FFFFFF;
  2917. text-align:center;
  2918. }
  2919. #u45855 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:100px;
  2923. top:554px;
  2924. width:48px;
  2925. height:14px;
  2926. display:flex;
  2927. transition:none;
  2928. transform-origin:50% 50%;
  2929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2930. font-weight:400;
  2931. font-style:normal;
  2932. font-size:10px;
  2933. color:#FFFFFF;
  2934. text-align:center;
  2935. }
  2936. #u45855 .text {
  2937. position:absolute;
  2938. align-self:flex-start;
  2939. padding:0px 0px 0px 0px;
  2940. box-sizing:border-box;
  2941. width:100%;
  2942. }
  2943. #u45855_text {
  2944. border-width:0px;
  2945. word-wrap:break-word;
  2946. text-transform:none;
  2947. }
  2948. #u45856 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:306px;
  2952. top:554px;
  2953. width:70px;
  2954. height:69px;
  2955. display:flex;
  2956. transition:none;
  2957. }
  2958. #u45856 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 2px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u45856_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:70px;
  2971. height:69px;
  2972. }
  2973. #u45856_text {
  2974. border-width:0px;
  2975. word-wrap:break-word;
  2976. text-transform:none;
  2977. visibility:hidden;
  2978. }
  2979. #u45857 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:0px;
  2985. height:0px;
  2986. }
  2987. #u45858_div {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:355px;
  2993. height:140px;
  2994. background:inherit;
  2995. background-color:rgba(255, 255, 255, 1);
  2996. border-radius:4px;
  2997. filter:drop-shadow(none);
  2998. transition:none;
  2999. }
  3000. #u45858 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:39px;
  3004. top:657px;
  3005. width:355px;
  3006. height:140px;
  3007. display:flex;
  3008. transition:none;
  3009. transform-origin:50% 50%;
  3010. }
  3011. #u45858 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:2px 2px 2px 2px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u45858_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u45859_div {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:29px;
  3030. height:30px;
  3031. background:inherit;
  3032. background-color:rgba(255, 255, 255, 0);
  3033. border-left:0px;
  3034. border-top:0px;
  3035. border-right:0px;
  3036. border-radius:0px;
  3037. border-bottom-right-radius:0px;
  3038. border-bottom-left-radius:0px;
  3039. filter:drop-shadow(none);
  3040. transition:none;
  3041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3042. font-weight:400;
  3043. font-style:normal;
  3044. font-size:14px;
  3045. line-height:30px;
  3046. }
  3047. #u45859 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:55px;
  3051. top:696px;
  3052. width:29px;
  3053. height:30px;
  3054. display:flex;
  3055. transition:none;
  3056. transform-origin:50% 50%;
  3057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3058. font-weight:400;
  3059. font-style:normal;
  3060. font-size:14px;
  3061. line-height:30px;
  3062. }
  3063. #u45859 .text {
  3064. position:absolute;
  3065. align-self:flex-start;
  3066. padding:0px 0px 0px 0px;
  3067. box-sizing:border-box;
  3068. width:100%;
  3069. }
  3070. #u45859_text {
  3071. border-width:0px;
  3072. white-space:nowrap;
  3073. text-transform:none;
  3074. }
  3075. #u45860_div {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:97px;
  3081. height:17px;
  3082. background:inherit;
  3083. background-color:rgba(255, 255, 255, 0);
  3084. border-left:0px;
  3085. border-top:0px;
  3086. border-right:0px;
  3087. border-radius:0px;
  3088. border-bottom-right-radius:0px;
  3089. border-bottom-left-radius:0px;
  3090. filter:drop-shadow(none);
  3091. transition:none;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. color:#AAAAAA;
  3097. }
  3098. #u45860 {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:55px;
  3102. top:726px;
  3103. width:97px;
  3104. height:17px;
  3105. display:flex;
  3106. transition:none;
  3107. transform-origin:50% 50%;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:12px;
  3112. color:#AAAAAA;
  3113. }
  3114. #u45860 .text {
  3115. position:absolute;
  3116. align-self:flex-start;
  3117. padding:0px 0px 0px 0px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u45860_text {
  3122. border-width:0px;
  3123. white-space:nowrap;
  3124. text-transform:none;
  3125. }
  3126. #u45861 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:0px;
  3132. height:0px;
  3133. }
  3134. #u45862_div {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:128px;
  3140. height:30px;
  3141. background:inherit;
  3142. background-color:rgba(255, 255, 255, 0);
  3143. border-left:0px;
  3144. border-top:0px;
  3145. border-right:0px;
  3146. border-radius:0px;
  3147. border-bottom-right-radius:0px;
  3148. border-bottom-left-radius:0px;
  3149. filter:drop-shadow(none);
  3150. transition:none;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:12px;
  3155. color:#AAAAAA;
  3156. line-height:30px;
  3157. }
  3158. #u45862 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:55px;
  3162. top:666px;
  3163. width:128px;
  3164. height:30px;
  3165. display:flex;
  3166. transition:none;
  3167. transform-origin:50% 50%;
  3168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. font-size:12px;
  3172. color:#AAAAAA;
  3173. line-height:30px;
  3174. }
  3175. #u45862 .text {
  3176. position:absolute;
  3177. align-self:center;
  3178. padding:0px 0px 0px 0px;
  3179. box-sizing:border-box;
  3180. width:100%;
  3181. }
  3182. #u45862_text {
  3183. border-width:0px;
  3184. white-space:nowrap;
  3185. text-transform:none;
  3186. }
  3187. #u45863_div {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:8px;
  3193. height:8px;
  3194. background:inherit;
  3195. background-color:rgba(255, 255, 255, 0);
  3196. box-sizing:border-box;
  3197. border-width:1px;
  3198. border-style:solid;
  3199. border-color:rgba(51, 51, 51, 1);
  3200. border-right:0px;
  3201. border-bottom:0px;
  3202. border-radius:0px;
  3203. border-top-right-radius:0px;
  3204. border-bottom-left-radius:0px;
  3205. filter:drop-shadow(none);
  3206. transition:none;
  3207. }
  3208. #u45863 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:372px;
  3212. top:677px;
  3213. width:8px;
  3214. height:8px;
  3215. display:flex;
  3216. -webkit-transform:rotate(135deg);
  3217. -moz-transform:rotate(135deg);
  3218. -ms-transform:rotate(135deg);
  3219. transform:rotate(135deg);
  3220. transition:none;
  3221. transform-origin:50% 50%;
  3222. }
  3223. #u45863 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:2px 2px 2px 2px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u45863_text {
  3231. border-width:0px;
  3232. word-wrap:break-word;
  3233. text-transform:none;
  3234. visibility:hidden;
  3235. }
  3236. #u45864_div {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:203px;
  3242. height:34px;
  3243. background:inherit;
  3244. background-color:rgba(255, 255, 255, 0);
  3245. border-left:0px;
  3246. border-top:0px;
  3247. border-right:0px;
  3248. border-radius:0px;
  3249. border-bottom-right-radius:0px;
  3250. border-bottom-left-radius:0px;
  3251. filter:drop-shadow(none);
  3252. transition:none;
  3253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3254. font-weight:400;
  3255. font-style:normal;
  3256. font-size:12px;
  3257. }
  3258. #u45864 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:55px;
  3262. top:753px;
  3263. width:203px;
  3264. height:34px;
  3265. display:flex;
  3266. transition:none;
  3267. transform-origin:50% 50%;
  3268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3269. font-weight:400;
  3270. font-style:normal;
  3271. font-size:12px;
  3272. }
  3273. #u45864 .text {
  3274. position:absolute;
  3275. align-self:flex-start;
  3276. padding:0px 0px 0px 0px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u45864_text {
  3281. border-width:0px;
  3282. white-space:nowrap;
  3283. text-transform:none;
  3284. }
  3285. #u45865_div {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:48px;
  3291. height:14px;
  3292. background:inherit;
  3293. background-color:rgba(191, 191, 0, 1);
  3294. border-radius:0px;
  3295. filter:drop-shadow(none);
  3296. transition:none;
  3297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3298. font-weight:400;
  3299. font-style:normal;
  3300. font-size:10px;
  3301. color:#FFFFFF;
  3302. text-align:center;
  3303. }
  3304. #u45865 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:100px;
  3308. top:704px;
  3309. width:48px;
  3310. height:14px;
  3311. display:flex;
  3312. transition:none;
  3313. transform-origin:50% 50%;
  3314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. font-size:10px;
  3318. color:#FFFFFF;
  3319. text-align:center;
  3320. }
  3321. #u45865 .text {
  3322. position:absolute;
  3323. align-self:flex-start;
  3324. padding:0px 0px 0px 0px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u45865_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. }
  3333. #u45866 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:306px;
  3337. top:704px;
  3338. width:70px;
  3339. height:69px;
  3340. display:flex;
  3341. transition:none;
  3342. }
  3343. #u45866 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:2px 2px 2px 2px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u45866_img {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:70px;
  3356. height:69px;
  3357. }
  3358. #u45866_text {
  3359. border-width:0px;
  3360. word-wrap:break-word;
  3361. text-transform:none;
  3362. visibility:hidden;
  3363. }