styles.css 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687
  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. #u44972 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u44973 {
  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. #u44973 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u44973_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u44973_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u44974_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. #u44974 {
  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. #u44974 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u44974_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u44975 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u44976_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. #u44976 {
  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. #u44976 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u44976_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u44977 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u44978 {
  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. #u44978 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u44978_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u44978_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u44979 {
  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. #u44979 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u44979_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u44979_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u44980 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u44981 {
  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. #u44981 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u44981_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u44981_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u44982 {
  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. #u44982 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u44982_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u44982_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u44983 {
  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. #u44983 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u44983_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u44983_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u44984 {
  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. #u44984 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u44984_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u44984_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u44985 {
  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. #u44985 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u44985_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u44985_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u44986_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. #u44986 {
  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. #u44986 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u44986_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u44987 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u44988 {
  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. #u44988 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u44988_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u44988_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u44989_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. #u44989 {
  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. #u44989 .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. #u44989_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u44990 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u44991 {
  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. #u44991 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u44991_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u44991_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u44992_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. #u44992 {
  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. #u44992 .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. #u44992_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u44993_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. #u44993 {
  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. #u44993 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u44993_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u44994 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u44995 {
  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. #u44995 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u44995_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u44995_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u44996_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. #u44996 {
  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. #u44996 .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. #u44996_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u44997 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u44998 {
  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. #u44998 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u44998_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u44998_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u44999_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. #u44999 {
  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. #u44999 .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. #u44999_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u45000_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:735px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:35px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u45000 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:106px;
  823. width:375px;
  824. height:735px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u45000 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u45000_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u45001 {
  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. #u45001 .text {
  853. position:absolute;
  854. align-self:center;
  855. padding:2px 2px 2px 2px;
  856. box-sizing:border-box;
  857. width:100%;
  858. }
  859. #u45001_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:375px;
  865. height:44px;
  866. }
  867. #u45001_text {
  868. border-width:0px;
  869. word-wrap:break-word;
  870. text-transform:none;
  871. visibility:hidden;
  872. }
  873. #u45002 {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:0px;
  879. height:0px;
  880. }
  881. #u45003_div {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:88px;
  887. height:32px;
  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(242, 242, 242, 1);
  894. border-radius:33px;
  895. filter:drop-shadow(none);
  896. transition:none;
  897. }
  898. #u45003 {
  899. border-width:0px;
  900. position:absolute;
  901. left:309px;
  902. top:71px;
  903. width:88px;
  904. height:32px;
  905. display:flex;
  906. transition:none;
  907. transform-origin:50% 50%;
  908. }
  909. #u45003 .text {
  910. position:absolute;
  911. align-self:center;
  912. padding:2px 2px 2px 2px;
  913. box-sizing:border-box;
  914. width:100%;
  915. }
  916. #u45003_text {
  917. border-width:0px;
  918. word-wrap:break-word;
  919. text-transform:none;
  920. visibility:hidden;
  921. }
  922. #u45004 {
  923. border-width:0px;
  924. position:absolute;
  925. left:0px;
  926. top:0px;
  927. width:0px;
  928. height:0px;
  929. }
  930. #u45005 {
  931. border-width:0px;
  932. position:absolute;
  933. left:372px;
  934. top:78px;
  935. width:18px;
  936. height:18px;
  937. display:flex;
  938. transition:none;
  939. }
  940. #u45005 .text {
  941. position:absolute;
  942. align-self:center;
  943. padding:2px 2px 2px 2px;
  944. box-sizing:border-box;
  945. width:100%;
  946. }
  947. #u45005_img {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:18px;
  953. height:18px;
  954. }
  955. #u45005_text {
  956. border-width:0px;
  957. word-wrap:break-word;
  958. text-transform:none;
  959. visibility:hidden;
  960. }
  961. #u45006 {
  962. border-width:0px;
  963. position:absolute;
  964. left:378px;
  965. top:84px;
  966. width:6px;
  967. height:6px;
  968. display:flex;
  969. transition:none;
  970. }
  971. #u45006 .text {
  972. position:absolute;
  973. align-self:center;
  974. padding:2px 2px 2px 2px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u45006_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:6px;
  984. height:6px;
  985. }
  986. #u45006_text {
  987. border-width:0px;
  988. word-wrap:break-word;
  989. text-transform:none;
  990. visibility:hidden;
  991. }
  992. #u45007 {
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:0px;
  998. height:0px;
  999. }
  1000. #u45008 {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:323px;
  1004. top:85px;
  1005. width:5px;
  1006. height:5px;
  1007. display:flex;
  1008. transition:none;
  1009. }
  1010. #u45008 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u45008_img {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:5px;
  1023. height:5px;
  1024. }
  1025. #u45008_text {
  1026. border-width:0px;
  1027. word-wrap:break-word;
  1028. text-transform:none;
  1029. visibility:hidden;
  1030. }
  1031. #u45009 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:339px;
  1035. top:85px;
  1036. width:5px;
  1037. height:5px;
  1038. display:flex;
  1039. transition:none;
  1040. }
  1041. #u45009 .text {
  1042. position:absolute;
  1043. align-self:center;
  1044. padding:2px 2px 2px 2px;
  1045. box-sizing:border-box;
  1046. width:100%;
  1047. }
  1048. #u45009_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u45009_text {
  1057. border-width:0px;
  1058. word-wrap:break-word;
  1059. text-transform:none;
  1060. visibility:hidden;
  1061. }
  1062. #u45010 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:330px;
  1066. top:84px;
  1067. width:7px;
  1068. height:7px;
  1069. display:flex;
  1070. transition:none;
  1071. }
  1072. #u45010 .text {
  1073. position:absolute;
  1074. align-self:center;
  1075. padding:2px 2px 2px 2px;
  1076. box-sizing:border-box;
  1077. width:100%;
  1078. }
  1079. #u45010_img {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:0px;
  1083. top:0px;
  1084. width:7px;
  1085. height:7px;
  1086. }
  1087. #u45010_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u45011 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:347px;
  1097. top:87px;
  1098. width:18px;
  1099. height:1px;
  1100. display:flex;
  1101. -webkit-transform:rotate(90deg);
  1102. -moz-transform:rotate(90deg);
  1103. -ms-transform:rotate(90deg);
  1104. transform:rotate(90deg);
  1105. transition:none;
  1106. }
  1107. #u45011 .text {
  1108. position:absolute;
  1109. align-self:center;
  1110. padding:2px 2px 2px 2px;
  1111. box-sizing:border-box;
  1112. width:100%;
  1113. }
  1114. #u45011_img {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:0px;
  1118. top:0px;
  1119. width:19px;
  1120. height:2px;
  1121. }
  1122. #u45011_text {
  1123. border-width:0px;
  1124. word-wrap:break-word;
  1125. text-transform:none;
  1126. visibility:hidden;
  1127. }
  1128. #u45012_div {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:65px;
  1134. height:22px;
  1135. background:inherit;
  1136. background-color:rgba(255, 255, 255, 0);
  1137. border-radius:0px;
  1138. filter:drop-shadow(none);
  1139. transition:none;
  1140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1141. font-weight:400;
  1142. font-style:normal;
  1143. font-size:16px;
  1144. color:#000000;
  1145. }
  1146. #u45012 {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:174px;
  1150. top:78px;
  1151. width:65px;
  1152. height:22px;
  1153. display:flex;
  1154. transition:none;
  1155. transform-origin:50% 50%;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. font-size:16px;
  1160. color:#000000;
  1161. }
  1162. #u45012 .text {
  1163. position:absolute;
  1164. align-self:flex-start;
  1165. padding:0px 0px 0px 0px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u45012_text {
  1170. border-width:0px;
  1171. white-space:nowrap;
  1172. text-transform:none;
  1173. }
  1174. #u45013_div {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:12px;
  1180. height:12px;
  1181. background:inherit;
  1182. background-color:rgba(255, 255, 255, 0);
  1183. box-sizing:border-box;
  1184. border-width:2px;
  1185. border-style:solid;
  1186. border-color:rgba(51, 51, 51, 1);
  1187. border-right:0px;
  1188. border-bottom:0px;
  1189. border-radius:0px;
  1190. border-top-right-radius:0px;
  1191. border-bottom-left-radius:0px;
  1192. filter:drop-shadow(none);
  1193. transition:none;
  1194. }
  1195. #u45013 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:46px;
  1199. top:81px;
  1200. width:12px;
  1201. height:12px;
  1202. display:flex;
  1203. -webkit-transform:rotate(315deg);
  1204. -moz-transform:rotate(315deg);
  1205. -ms-transform:rotate(315deg);
  1206. transform:rotate(315deg);
  1207. transition:none;
  1208. transform-origin:50% 50%;
  1209. }
  1210. #u45013 .text {
  1211. position:absolute;
  1212. align-self:center;
  1213. padding:2px 2px 2px 2px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u45013_text {
  1218. border-width:0px;
  1219. word-wrap:break-word;
  1220. text-transform:none;
  1221. visibility:hidden;
  1222. }
  1223. #u45014 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:73px;
  1227. top:76px;
  1228. width:23px;
  1229. height:23px;
  1230. display:flex;
  1231. transition:none;
  1232. }
  1233. #u45014 .text {
  1234. position:absolute;
  1235. align-self:center;
  1236. padding:2px 2px 2px 2px;
  1237. box-sizing:border-box;
  1238. width:100%;
  1239. }
  1240. #u45014_img {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:0px;
  1244. top:0px;
  1245. width:23px;
  1246. height:23px;
  1247. }
  1248. #u45014_text {
  1249. border-width:0px;
  1250. word-wrap:break-word;
  1251. text-transform:none;
  1252. visibility:hidden;
  1253. }
  1254. #u45015 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:0px;
  1260. height:0px;
  1261. }
  1262. #u45016_div {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:0px;
  1266. top:0px;
  1267. width:375px;
  1268. height:50px;
  1269. background:inherit;
  1270. background-color:rgba(255, 255, 255, 1);
  1271. box-sizing:border-box;
  1272. border-width:1px;
  1273. border-style:solid;
  1274. border-color:rgba(242, 242, 242, 1);
  1275. border-radius:26px;
  1276. border-top-left-radius:0px;
  1277. border-top-right-radius:0px;
  1278. filter:drop-shadow(none);
  1279. transition:none;
  1280. }
  1281. #u45016 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:29px;
  1285. top:791px;
  1286. width:375px;
  1287. height:50px;
  1288. display:flex;
  1289. transition:none;
  1290. transform-origin:50% 50%;
  1291. }
  1292. #u45016 .text {
  1293. position:absolute;
  1294. align-self:center;
  1295. padding:2px 2px 2px 2px;
  1296. box-sizing:border-box;
  1297. width:100%;
  1298. }
  1299. #u45016_text {
  1300. border-width:0px;
  1301. word-wrap:break-word;
  1302. text-transform:none;
  1303. visibility:hidden;
  1304. }
  1305. #u45017 {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:0px;
  1309. top:0px;
  1310. width:0px;
  1311. height:0px;
  1312. }
  1313. #u45018 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:320px;
  1317. top:795px;
  1318. width:24px;
  1319. height:24px;
  1320. display:flex;
  1321. transition:none;
  1322. font-size:8px;
  1323. }
  1324. #u45018 .text {
  1325. position:absolute;
  1326. align-self:center;
  1327. padding:2px 2px 2px 2px;
  1328. box-sizing:border-box;
  1329. width:100%;
  1330. }
  1331. #u45018_img {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:0px;
  1335. top:0px;
  1336. width:24px;
  1337. height:24px;
  1338. }
  1339. #u45018_text {
  1340. border-width:0px;
  1341. word-wrap:break-word;
  1342. text-transform:none;
  1343. }
  1344. #u45019_div {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:0px;
  1348. top:0px;
  1349. width:25px;
  1350. height:17px;
  1351. background:inherit;
  1352. background-color:rgba(255, 255, 255, 0);
  1353. border-radius:0px;
  1354. filter:drop-shadow(none);
  1355. transition:none;
  1356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1357. font-weight:400;
  1358. font-style:normal;
  1359. font-size:12px;
  1360. }
  1361. #u45019 {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:319px;
  1365. top:820px;
  1366. width:25px;
  1367. height:17px;
  1368. display:flex;
  1369. transition:none;
  1370. transform-origin:50% 50%;
  1371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1372. font-weight:400;
  1373. font-style:normal;
  1374. font-size:12px;
  1375. }
  1376. #u45019 .text {
  1377. position:absolute;
  1378. align-self:flex-start;
  1379. padding:0px 0px 0px 0px;
  1380. box-sizing:border-box;
  1381. width:100%;
  1382. }
  1383. #u45019_text {
  1384. border-width:0px;
  1385. white-space:nowrap;
  1386. text-transform:none;
  1387. }
  1388. #u45020 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:0px;
  1392. top:0px;
  1393. width:0px;
  1394. height:0px;
  1395. }
  1396. #u45021_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:25px;
  1402. height:17px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border-radius:0px;
  1406. filter:drop-shadow(none);
  1407. transition:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:12px;
  1412. }
  1413. #u45021 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:89px;
  1417. top:820px;
  1418. width:25px;
  1419. height:17px;
  1420. display:flex;
  1421. transition:none;
  1422. transform-origin:50% 50%;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. font-size:12px;
  1427. }
  1428. #u45021 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u45021_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u45022 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:89px;
  1444. top:795px;
  1445. width:24px;
  1446. height:24px;
  1447. display:flex;
  1448. transition:none;
  1449. font-size:8px;
  1450. color:#FFFFFF;
  1451. }
  1452. #u45022 .text {
  1453. position:absolute;
  1454. align-self:center;
  1455. padding:2px 2px 2px 2px;
  1456. box-sizing:border-box;
  1457. width:100%;
  1458. }
  1459. #u45022_img {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:0px;
  1463. top:0px;
  1464. width:24px;
  1465. height:24px;
  1466. }
  1467. #u45022_text {
  1468. border-width:0px;
  1469. word-wrap:break-word;
  1470. text-transform:none;
  1471. }
  1472. #u45023 {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:0px;
  1477. width:0px;
  1478. height:0px;
  1479. }
  1480. #u45024 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:0px;
  1484. top:0px;
  1485. width:0px;
  1486. height:0px;
  1487. }
  1488. #u45025_div {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:358px;
  1494. height:100px;
  1495. background:inherit;
  1496. background-color:rgba(255, 255, 255, 1);
  1497. border-radius:4px;
  1498. filter:drop-shadow(none);
  1499. transition:none;
  1500. }
  1501. #u45025 {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:37px;
  1505. top:196px;
  1506. width:358px;
  1507. height:100px;
  1508. display:flex;
  1509. transition:none;
  1510. transform-origin:50% 50%;
  1511. }
  1512. #u45025 .text {
  1513. position:absolute;
  1514. align-self:center;
  1515. padding:2px 2px 2px 2px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u45025_text {
  1520. border-width:0px;
  1521. word-wrap:break-word;
  1522. text-transform:none;
  1523. visibility:hidden;
  1524. }
  1525. #u45026_div {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:85px;
  1531. height:20px;
  1532. background:inherit;
  1533. background-color:rgba(255, 255, 255, 0);
  1534. border-left:0px;
  1535. border-top:0px;
  1536. border-right:0px;
  1537. border-radius:0px;
  1538. border-bottom-right-radius:0px;
  1539. border-bottom-left-radius:0px;
  1540. filter:drop-shadow(none);
  1541. transition:none;
  1542. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1543. font-weight:500;
  1544. font-style:normal;
  1545. font-size:14px;
  1546. }
  1547. #u45026 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:52px;
  1551. top:206px;
  1552. width:85px;
  1553. height:20px;
  1554. display:flex;
  1555. transition:none;
  1556. transform-origin:50% 50%;
  1557. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1558. font-weight:500;
  1559. font-style:normal;
  1560. font-size:14px;
  1561. }
  1562. #u45026 .text {
  1563. position:absolute;
  1564. align-self:flex-start;
  1565. padding:0px 0px 0px 0px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u45026_text {
  1570. border-width:0px;
  1571. white-space:nowrap;
  1572. text-transform:none;
  1573. }
  1574. #u45027_div {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:87px;
  1580. height:25px;
  1581. background:inherit;
  1582. background-color:rgba(255, 255, 255, 0);
  1583. border-left:0px;
  1584. border-top:0px;
  1585. border-right:0px;
  1586. border-radius:0px;
  1587. border-bottom-right-radius:0px;
  1588. border-bottom-left-radius:0px;
  1589. filter:drop-shadow(none);
  1590. transition:none;
  1591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1592. font-weight:400;
  1593. font-style:normal;
  1594. font-size:12px;
  1595. line-height:25px;
  1596. }
  1597. #u45027 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:56px;
  1601. top:246px;
  1602. width:87px;
  1603. height:25px;
  1604. display:flex;
  1605. transition:none;
  1606. transform-origin:50% 50%;
  1607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1608. font-weight:400;
  1609. font-style:normal;
  1610. font-size:12px;
  1611. line-height:25px;
  1612. }
  1613. #u45027 .text {
  1614. position:absolute;
  1615. align-self:flex-start;
  1616. padding:0px 0px 0px 0px;
  1617. box-sizing:border-box;
  1618. width:100%;
  1619. }
  1620. #u45027_text {
  1621. border-width:0px;
  1622. white-space:nowrap;
  1623. text-transform:none;
  1624. }
  1625. #u45028_div {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:37px;
  1631. height:25px;
  1632. background:inherit;
  1633. background-color:rgba(255, 255, 255, 0);
  1634. border-left:0px;
  1635. border-top:0px;
  1636. border-right:0px;
  1637. border-radius:0px;
  1638. border-bottom-right-radius:0px;
  1639. border-bottom-left-radius:0px;
  1640. filter:drop-shadow(none);
  1641. transition:none;
  1642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1643. font-weight:400;
  1644. font-style:normal;
  1645. font-size:12px;
  1646. color:#7F7F7F;
  1647. line-height:25px;
  1648. }
  1649. #u45028 {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:278px;
  1653. top:252px;
  1654. width:37px;
  1655. height:25px;
  1656. display:flex;
  1657. transition:none;
  1658. transform-origin:50% 50%;
  1659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1660. font-weight:400;
  1661. font-style:normal;
  1662. font-size:12px;
  1663. color:#7F7F7F;
  1664. line-height:25px;
  1665. }
  1666. #u45028 .text {
  1667. position:absolute;
  1668. align-self:flex-start;
  1669. padding:0px 0px 0px 0px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u45028_text {
  1674. border-width:0px;
  1675. white-space:nowrap;
  1676. text-transform:none;
  1677. }
  1678. #u45029_div {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:0px;
  1682. top:0px;
  1683. width:12px;
  1684. height:25px;
  1685. background:inherit;
  1686. background-color:rgba(255, 255, 255, 0);
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. filter:drop-shadow(none);
  1694. transition:none;
  1695. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1696. font-weight:500;
  1697. font-style:normal;
  1698. font-size:18px;
  1699. color:#1890FF;
  1700. }
  1701. #u45029 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:290px;
  1705. top:224px;
  1706. width:12px;
  1707. height:25px;
  1708. display:flex;
  1709. transition:none;
  1710. transform-origin:50% 50%;
  1711. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1712. font-weight:500;
  1713. font-style:normal;
  1714. font-size:18px;
  1715. color:#1890FF;
  1716. }
  1717. #u45029 .text {
  1718. position:absolute;
  1719. align-self:flex-start;
  1720. padding:0px 0px 0px 0px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u45029_text {
  1725. border-width:0px;
  1726. white-space:nowrap;
  1727. text-transform:none;
  1728. }
  1729. #u45030_div {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:37px;
  1735. height:25px;
  1736. background:inherit;
  1737. background-color:rgba(255, 255, 255, 0);
  1738. border-left:0px;
  1739. border-top:0px;
  1740. border-right:0px;
  1741. border-radius:0px;
  1742. border-bottom-right-radius:0px;
  1743. border-bottom-left-radius:0px;
  1744. filter:drop-shadow(none);
  1745. transition:none;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:12px;
  1750. color:#7F7F7F;
  1751. line-height:25px;
  1752. }
  1753. #u45030 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:221px;
  1757. top:252px;
  1758. width:37px;
  1759. height:25px;
  1760. display:flex;
  1761. transition:none;
  1762. transform-origin:50% 50%;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:12px;
  1767. color:#7F7F7F;
  1768. line-height:25px;
  1769. }
  1770. #u45030 .text {
  1771. position:absolute;
  1772. align-self:flex-start;
  1773. padding:0px 0px 0px 0px;
  1774. box-sizing:border-box;
  1775. width:100%;
  1776. }
  1777. #u45030_text {
  1778. border-width:0px;
  1779. white-space:nowrap;
  1780. text-transform:none;
  1781. }
  1782. #u45031_div {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:12px;
  1788. height:25px;
  1789. background:inherit;
  1790. background-color:rgba(255, 255, 255, 0);
  1791. border-left:0px;
  1792. border-top:0px;
  1793. border-right:0px;
  1794. border-radius:0px;
  1795. border-bottom-right-radius:0px;
  1796. border-bottom-left-radius:0px;
  1797. filter:drop-shadow(none);
  1798. transition:none;
  1799. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1800. font-weight:500;
  1801. font-style:normal;
  1802. font-size:18px;
  1803. color:#1890FF;
  1804. }
  1805. #u45031 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:233px;
  1809. top:224px;
  1810. width:12px;
  1811. height:25px;
  1812. display:flex;
  1813. transition:none;
  1814. transform-origin:50% 50%;
  1815. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1816. font-weight:500;
  1817. font-style:normal;
  1818. font-size:18px;
  1819. color:#1890FF;
  1820. }
  1821. #u45031 .text {
  1822. position:absolute;
  1823. align-self:flex-start;
  1824. padding:0px 0px 0px 0px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u45031_text {
  1829. border-width:0px;
  1830. white-space:nowrap;
  1831. text-transform:none;
  1832. }
  1833. #u45032_div {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:37px;
  1839. height:25px;
  1840. background:inherit;
  1841. background-color:rgba(255, 255, 255, 0);
  1842. border-left:0px;
  1843. border-top:0px;
  1844. border-right:0px;
  1845. border-radius:0px;
  1846. border-bottom-right-radius:0px;
  1847. border-bottom-left-radius:0px;
  1848. filter:drop-shadow(none);
  1849. transition:none;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:12px;
  1854. color:#7F7F7F;
  1855. line-height:25px;
  1856. }
  1857. #u45032 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:338px;
  1861. top:252px;
  1862. width:37px;
  1863. height:25px;
  1864. display:flex;
  1865. transition:none;
  1866. transform-origin:50% 50%;
  1867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1868. font-weight:400;
  1869. font-style:normal;
  1870. font-size:12px;
  1871. color:#7F7F7F;
  1872. line-height:25px;
  1873. }
  1874. #u45032 .text {
  1875. position:absolute;
  1876. align-self:flex-start;
  1877. padding:0px 0px 0px 0px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u45032_text {
  1882. border-width:0px;
  1883. white-space:nowrap;
  1884. text-transform:none;
  1885. }
  1886. #u45033_div {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:12px;
  1892. height:25px;
  1893. background:inherit;
  1894. background-color:rgba(255, 255, 255, 0);
  1895. border-left:0px;
  1896. border-top:0px;
  1897. border-right:0px;
  1898. border-radius:0px;
  1899. border-bottom-right-radius:0px;
  1900. border-bottom-left-radius:0px;
  1901. filter:drop-shadow(none);
  1902. transition:none;
  1903. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1904. font-weight:500;
  1905. font-style:normal;
  1906. font-size:18px;
  1907. color:#1890FF;
  1908. }
  1909. #u45033 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:350px;
  1913. top:224px;
  1914. width:12px;
  1915. height:25px;
  1916. display:flex;
  1917. transition:none;
  1918. transform-origin:50% 50%;
  1919. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1920. font-weight:500;
  1921. font-style:normal;
  1922. font-size:18px;
  1923. color:#1890FF;
  1924. }
  1925. #u45033 .text {
  1926. position:absolute;
  1927. align-self:flex-start;
  1928. padding:0px 0px 0px 0px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u45033_text {
  1933. border-width:0px;
  1934. white-space:nowrap;
  1935. text-transform:none;
  1936. }
  1937. #u45034_div {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:34px;
  1943. height:11px;
  1944. background:inherit;
  1945. background-color:rgba(245, 109, 35, 1);
  1946. border-radius:2px;
  1947. filter:drop-shadow(none);
  1948. transition:none;
  1949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1950. font-weight:400;
  1951. font-style:normal;
  1952. font-size:8px;
  1953. color:#FFFFFF;
  1954. text-align:center;
  1955. }
  1956. #u45034 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:300px;
  1960. top:220px;
  1961. width:34px;
  1962. height:11px;
  1963. display:flex;
  1964. transition:none;
  1965. transform-origin:50% 50%;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:8px;
  1970. color:#FFFFFF;
  1971. text-align:center;
  1972. }
  1973. #u45034 .text {
  1974. position:absolute;
  1975. align-self:flex-start;
  1976. padding:0px 2px 0px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u45034_text {
  1981. border-width:0px;
  1982. white-space:nowrap;
  1983. text-transform:none;
  1984. }
  1985. #u45035 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:0px;
  1991. height:0px;
  1992. }
  1993. #u45036 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:0px;
  1999. height:0px;
  2000. }
  2001. #u45037_div {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:358px;
  2007. height:100px;
  2008. background:inherit;
  2009. background-color:rgba(255, 255, 255, 1);
  2010. border-radius:4px;
  2011. filter:drop-shadow(none);
  2012. transition:none;
  2013. }
  2014. #u45037 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:37px;
  2018. top:306px;
  2019. width:358px;
  2020. height:100px;
  2021. display:flex;
  2022. transition:none;
  2023. transform-origin:50% 50%;
  2024. }
  2025. #u45037 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 2px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u45037_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. visibility:hidden;
  2037. }
  2038. #u45038_div {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:85px;
  2044. height:20px;
  2045. background:inherit;
  2046. background-color:rgba(255, 255, 255, 0);
  2047. border-left:0px;
  2048. border-top:0px;
  2049. border-right:0px;
  2050. border-radius:0px;
  2051. border-bottom-right-radius:0px;
  2052. border-bottom-left-radius:0px;
  2053. filter:drop-shadow(none);
  2054. transition:none;
  2055. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2056. font-weight:500;
  2057. font-style:normal;
  2058. font-size:14px;
  2059. }
  2060. #u45038 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:52px;
  2064. top:316px;
  2065. width:85px;
  2066. height:20px;
  2067. display:flex;
  2068. transition:none;
  2069. transform-origin:50% 50%;
  2070. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2071. font-weight:500;
  2072. font-style:normal;
  2073. font-size:14px;
  2074. }
  2075. #u45038 .text {
  2076. position:absolute;
  2077. align-self:flex-start;
  2078. padding:0px 0px 0px 0px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u45038_text {
  2083. border-width:0px;
  2084. white-space:nowrap;
  2085. text-transform:none;
  2086. }
  2087. #u45039_div {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:87px;
  2093. height:25px;
  2094. background:inherit;
  2095. background-color:rgba(255, 255, 255, 0);
  2096. border-left:0px;
  2097. border-top:0px;
  2098. border-right:0px;
  2099. border-radius:0px;
  2100. border-bottom-right-radius:0px;
  2101. border-bottom-left-radius:0px;
  2102. filter:drop-shadow(none);
  2103. transition:none;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:12px;
  2108. line-height:25px;
  2109. }
  2110. #u45039 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:56px;
  2114. top:356px;
  2115. width:87px;
  2116. height:25px;
  2117. display:flex;
  2118. transition:none;
  2119. transform-origin:50% 50%;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:12px;
  2124. line-height:25px;
  2125. }
  2126. #u45039 .text {
  2127. position:absolute;
  2128. align-self:flex-start;
  2129. padding:0px 0px 0px 0px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u45039_text {
  2134. border-width:0px;
  2135. white-space:nowrap;
  2136. text-transform:none;
  2137. }
  2138. #u45040_div {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:37px;
  2144. height:25px;
  2145. background:inherit;
  2146. background-color:rgba(255, 255, 255, 0);
  2147. border-left:0px;
  2148. border-top:0px;
  2149. border-right:0px;
  2150. border-radius:0px;
  2151. border-bottom-right-radius:0px;
  2152. border-bottom-left-radius:0px;
  2153. filter:drop-shadow(none);
  2154. transition:none;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. color:#7F7F7F;
  2160. line-height:25px;
  2161. }
  2162. #u45040 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:278px;
  2166. top:362px;
  2167. width:37px;
  2168. height:25px;
  2169. display:flex;
  2170. transition:none;
  2171. transform-origin:50% 50%;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:12px;
  2176. color:#7F7F7F;
  2177. line-height:25px;
  2178. }
  2179. #u45040 .text {
  2180. position:absolute;
  2181. align-self:flex-start;
  2182. padding:0px 0px 0px 0px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u45040_text {
  2187. border-width:0px;
  2188. white-space:nowrap;
  2189. text-transform:none;
  2190. }
  2191. #u45041_div {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:12px;
  2197. height:25px;
  2198. background:inherit;
  2199. background-color:rgba(255, 255, 255, 0);
  2200. border-left:0px;
  2201. border-top:0px;
  2202. border-right:0px;
  2203. border-radius:0px;
  2204. border-bottom-right-radius:0px;
  2205. border-bottom-left-radius:0px;
  2206. filter:drop-shadow(none);
  2207. transition:none;
  2208. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2209. font-weight:500;
  2210. font-style:normal;
  2211. font-size:18px;
  2212. color:#1890FF;
  2213. }
  2214. #u45041 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:290px;
  2218. top:334px;
  2219. width:12px;
  2220. height:25px;
  2221. display:flex;
  2222. transition:none;
  2223. transform-origin:50% 50%;
  2224. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2225. font-weight:500;
  2226. font-style:normal;
  2227. font-size:18px;
  2228. color:#1890FF;
  2229. }
  2230. #u45041 .text {
  2231. position:absolute;
  2232. align-self:flex-start;
  2233. padding:0px 0px 0px 0px;
  2234. box-sizing:border-box;
  2235. width:100%;
  2236. }
  2237. #u45041_text {
  2238. border-width:0px;
  2239. white-space:nowrap;
  2240. text-transform:none;
  2241. }
  2242. #u45042_div {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:37px;
  2248. height:25px;
  2249. background:inherit;
  2250. background-color:rgba(255, 255, 255, 0);
  2251. border-left:0px;
  2252. border-top:0px;
  2253. border-right:0px;
  2254. border-radius:0px;
  2255. border-bottom-right-radius:0px;
  2256. border-bottom-left-radius:0px;
  2257. filter:drop-shadow(none);
  2258. transition:none;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. color:#7F7F7F;
  2264. line-height:25px;
  2265. }
  2266. #u45042 {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:221px;
  2270. top:362px;
  2271. width:37px;
  2272. height:25px;
  2273. display:flex;
  2274. transition:none;
  2275. transform-origin:50% 50%;
  2276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:12px;
  2280. color:#7F7F7F;
  2281. line-height:25px;
  2282. }
  2283. #u45042 .text {
  2284. position:absolute;
  2285. align-self:flex-start;
  2286. padding:0px 0px 0px 0px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u45042_text {
  2291. border-width:0px;
  2292. white-space:nowrap;
  2293. text-transform:none;
  2294. }
  2295. #u45043_div {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:12px;
  2301. height:25px;
  2302. background:inherit;
  2303. background-color:rgba(255, 255, 255, 0);
  2304. border-left:0px;
  2305. border-top:0px;
  2306. border-right:0px;
  2307. border-radius:0px;
  2308. border-bottom-right-radius:0px;
  2309. border-bottom-left-radius:0px;
  2310. filter:drop-shadow(none);
  2311. transition:none;
  2312. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2313. font-weight:500;
  2314. font-style:normal;
  2315. font-size:18px;
  2316. color:#1890FF;
  2317. }
  2318. #u45043 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:233px;
  2322. top:334px;
  2323. width:12px;
  2324. height:25px;
  2325. display:flex;
  2326. transition:none;
  2327. transform-origin:50% 50%;
  2328. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2329. font-weight:500;
  2330. font-style:normal;
  2331. font-size:18px;
  2332. color:#1890FF;
  2333. }
  2334. #u45043 .text {
  2335. position:absolute;
  2336. align-self:flex-start;
  2337. padding:0px 0px 0px 0px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u45043_text {
  2342. border-width:0px;
  2343. white-space:nowrap;
  2344. text-transform:none;
  2345. }
  2346. #u45044_div {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:37px;
  2352. height:25px;
  2353. background:inherit;
  2354. background-color:rgba(255, 255, 255, 0);
  2355. border-left:0px;
  2356. border-top:0px;
  2357. border-right:0px;
  2358. border-radius:0px;
  2359. border-bottom-right-radius:0px;
  2360. border-bottom-left-radius:0px;
  2361. filter:drop-shadow(none);
  2362. transition:none;
  2363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:12px;
  2367. color:#7F7F7F;
  2368. line-height:25px;
  2369. }
  2370. #u45044 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:338px;
  2374. top:362px;
  2375. width:37px;
  2376. height:25px;
  2377. display:flex;
  2378. transition:none;
  2379. transform-origin:50% 50%;
  2380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2381. font-weight:400;
  2382. font-style:normal;
  2383. font-size:12px;
  2384. color:#7F7F7F;
  2385. line-height:25px;
  2386. }
  2387. #u45044 .text {
  2388. position:absolute;
  2389. align-self:flex-start;
  2390. padding:0px 0px 0px 0px;
  2391. box-sizing:border-box;
  2392. width:100%;
  2393. }
  2394. #u45044_text {
  2395. border-width:0px;
  2396. white-space:nowrap;
  2397. text-transform:none;
  2398. }
  2399. #u45045_div {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:12px;
  2405. height:25px;
  2406. background:inherit;
  2407. background-color:rgba(255, 255, 255, 0);
  2408. border-left:0px;
  2409. border-top:0px;
  2410. border-right:0px;
  2411. border-radius:0px;
  2412. border-bottom-right-radius:0px;
  2413. border-bottom-left-radius:0px;
  2414. filter:drop-shadow(none);
  2415. transition:none;
  2416. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2417. font-weight:500;
  2418. font-style:normal;
  2419. font-size:18px;
  2420. color:#1890FF;
  2421. }
  2422. #u45045 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:350px;
  2426. top:334px;
  2427. width:12px;
  2428. height:25px;
  2429. display:flex;
  2430. transition:none;
  2431. transform-origin:50% 50%;
  2432. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2433. font-weight:500;
  2434. font-style:normal;
  2435. font-size:18px;
  2436. color:#1890FF;
  2437. }
  2438. #u45045 .text {
  2439. position:absolute;
  2440. align-self:flex-start;
  2441. padding:0px 0px 0px 0px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u45045_text {
  2446. border-width:0px;
  2447. white-space:nowrap;
  2448. text-transform:none;
  2449. }
  2450. #u45046_div {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:34px;
  2456. height:11px;
  2457. background:inherit;
  2458. background-color:rgba(245, 109, 35, 1);
  2459. border-radius:2px;
  2460. filter:drop-shadow(none);
  2461. transition:none;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:8px;
  2466. color:#FFFFFF;
  2467. text-align:center;
  2468. }
  2469. #u45046 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:296px;
  2473. top:329px;
  2474. width:34px;
  2475. height:11px;
  2476. display:flex;
  2477. transition:none;
  2478. transform-origin:50% 50%;
  2479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2480. font-weight:400;
  2481. font-style:normal;
  2482. font-size:8px;
  2483. color:#FFFFFF;
  2484. text-align:center;
  2485. }
  2486. #u45046 .text {
  2487. position:absolute;
  2488. align-self:flex-start;
  2489. padding:0px 2px 0px 2px;
  2490. box-sizing:border-box;
  2491. width:100%;
  2492. }
  2493. #u45046_text {
  2494. border-width:0px;
  2495. white-space:nowrap;
  2496. text-transform:none;
  2497. }
  2498. #u45047 {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:0px;
  2504. height:0px;
  2505. }
  2506. #u45048 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:0px;
  2512. height:0px;
  2513. }
  2514. #u45049_div {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:0px;
  2519. width:358px;
  2520. height:100px;
  2521. background:inherit;
  2522. background-color:rgba(255, 255, 255, 1);
  2523. border-radius:4px;
  2524. filter:drop-shadow(none);
  2525. transition:none;
  2526. }
  2527. #u45049 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:37px;
  2531. top:416px;
  2532. width:358px;
  2533. height:100px;
  2534. display:flex;
  2535. transition:none;
  2536. transform-origin:50% 50%;
  2537. }
  2538. #u45049 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 2px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u45049_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. visibility:hidden;
  2550. }
  2551. #u45050_div {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:85px;
  2557. height:20px;
  2558. background:inherit;
  2559. background-color:rgba(255, 255, 255, 0);
  2560. border-left:0px;
  2561. border-top:0px;
  2562. border-right:0px;
  2563. border-radius:0px;
  2564. border-bottom-right-radius:0px;
  2565. border-bottom-left-radius:0px;
  2566. filter:drop-shadow(none);
  2567. transition:none;
  2568. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2569. font-weight:500;
  2570. font-style:normal;
  2571. font-size:14px;
  2572. }
  2573. #u45050 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:52px;
  2577. top:426px;
  2578. width:85px;
  2579. height:20px;
  2580. display:flex;
  2581. transition:none;
  2582. transform-origin:50% 50%;
  2583. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2584. font-weight:500;
  2585. font-style:normal;
  2586. font-size:14px;
  2587. }
  2588. #u45050 .text {
  2589. position:absolute;
  2590. align-self:flex-start;
  2591. padding:0px 0px 0px 0px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u45050_text {
  2596. border-width:0px;
  2597. white-space:nowrap;
  2598. text-transform:none;
  2599. }
  2600. #u45051_div {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:0px;
  2604. top:0px;
  2605. width:87px;
  2606. height:25px;
  2607. background:inherit;
  2608. background-color:rgba(255, 255, 255, 0);
  2609. border-left:0px;
  2610. border-top:0px;
  2611. border-right:0px;
  2612. border-radius:0px;
  2613. border-bottom-right-radius:0px;
  2614. border-bottom-left-radius:0px;
  2615. filter:drop-shadow(none);
  2616. transition:none;
  2617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. font-size:12px;
  2621. line-height:25px;
  2622. }
  2623. #u45051 {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:56px;
  2627. top:466px;
  2628. width:87px;
  2629. height:25px;
  2630. display:flex;
  2631. transition:none;
  2632. transform-origin:50% 50%;
  2633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2634. font-weight:400;
  2635. font-style:normal;
  2636. font-size:12px;
  2637. line-height:25px;
  2638. }
  2639. #u45051 .text {
  2640. position:absolute;
  2641. align-self:flex-start;
  2642. padding:0px 0px 0px 0px;
  2643. box-sizing:border-box;
  2644. width:100%;
  2645. }
  2646. #u45051_text {
  2647. border-width:0px;
  2648. white-space:nowrap;
  2649. text-transform:none;
  2650. }
  2651. #u45052_div {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:34px;
  2657. height:11px;
  2658. background:inherit;
  2659. background-color:rgba(245, 109, 35, 1);
  2660. border-radius:2px;
  2661. filter:drop-shadow(none);
  2662. transition:none;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:8px;
  2667. color:#FFFFFF;
  2668. text-align:center;
  2669. }
  2670. #u45052 {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:296px;
  2674. top:436px;
  2675. width:34px;
  2676. height:11px;
  2677. display:flex;
  2678. transition:none;
  2679. transform-origin:50% 50%;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:8px;
  2684. color:#FFFFFF;
  2685. text-align:center;
  2686. }
  2687. #u45052 .text {
  2688. position:absolute;
  2689. align-self:flex-start;
  2690. padding:0px 2px 0px 2px;
  2691. box-sizing:border-box;
  2692. width:100%;
  2693. }
  2694. #u45052_text {
  2695. border-width:0px;
  2696. white-space:nowrap;
  2697. text-transform:none;
  2698. }
  2699. #u45053_div {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:37px;
  2705. height:25px;
  2706. background:inherit;
  2707. background-color:rgba(255, 255, 255, 0);
  2708. border-left:0px;
  2709. border-top:0px;
  2710. border-right:0px;
  2711. border-radius:0px;
  2712. border-bottom-right-radius:0px;
  2713. border-bottom-left-radius:0px;
  2714. filter:drop-shadow(none);
  2715. transition:none;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:12px;
  2720. color:#7F7F7F;
  2721. line-height:25px;
  2722. }
  2723. #u45053 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:278px;
  2727. top:472px;
  2728. width:37px;
  2729. height:25px;
  2730. display:flex;
  2731. transition:none;
  2732. transform-origin:50% 50%;
  2733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:12px;
  2737. color:#7F7F7F;
  2738. line-height:25px;
  2739. }
  2740. #u45053 .text {
  2741. position:absolute;
  2742. align-self:flex-start;
  2743. padding:0px 0px 0px 0px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u45053_text {
  2748. border-width:0px;
  2749. white-space:nowrap;
  2750. text-transform:none;
  2751. }
  2752. #u45054_div {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:12px;
  2758. height:25px;
  2759. background:inherit;
  2760. background-color:rgba(255, 255, 255, 0);
  2761. border-left:0px;
  2762. border-top:0px;
  2763. border-right:0px;
  2764. border-radius:0px;
  2765. border-bottom-right-radius:0px;
  2766. border-bottom-left-radius:0px;
  2767. filter:drop-shadow(none);
  2768. transition:none;
  2769. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2770. font-weight:500;
  2771. font-style:normal;
  2772. font-size:18px;
  2773. color:#1890FF;
  2774. }
  2775. #u45054 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:290px;
  2779. top:444px;
  2780. width:12px;
  2781. height:25px;
  2782. display:flex;
  2783. transition:none;
  2784. transform-origin:50% 50%;
  2785. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2786. font-weight:500;
  2787. font-style:normal;
  2788. font-size:18px;
  2789. color:#1890FF;
  2790. }
  2791. #u45054 .text {
  2792. position:absolute;
  2793. align-self:flex-start;
  2794. padding:0px 0px 0px 0px;
  2795. box-sizing:border-box;
  2796. width:100%;
  2797. }
  2798. #u45054_text {
  2799. border-width:0px;
  2800. white-space:nowrap;
  2801. text-transform:none;
  2802. }
  2803. #u45055_div {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:37px;
  2809. height:25px;
  2810. background:inherit;
  2811. background-color:rgba(255, 255, 255, 0);
  2812. border-left:0px;
  2813. border-top:0px;
  2814. border-right:0px;
  2815. border-radius:0px;
  2816. border-bottom-right-radius:0px;
  2817. border-bottom-left-radius:0px;
  2818. filter:drop-shadow(none);
  2819. transition:none;
  2820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2821. font-weight:400;
  2822. font-style:normal;
  2823. font-size:12px;
  2824. color:#7F7F7F;
  2825. line-height:25px;
  2826. }
  2827. #u45055 {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:221px;
  2831. top:472px;
  2832. width:37px;
  2833. height:25px;
  2834. display:flex;
  2835. transition:none;
  2836. transform-origin:50% 50%;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:12px;
  2841. color:#7F7F7F;
  2842. line-height:25px;
  2843. }
  2844. #u45055 .text {
  2845. position:absolute;
  2846. align-self:flex-start;
  2847. padding:0px 0px 0px 0px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u45055_text {
  2852. border-width:0px;
  2853. white-space:nowrap;
  2854. text-transform:none;
  2855. }
  2856. #u45056_div {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:12px;
  2862. height:25px;
  2863. background:inherit;
  2864. background-color:rgba(255, 255, 255, 0);
  2865. border-left:0px;
  2866. border-top:0px;
  2867. border-right:0px;
  2868. border-radius:0px;
  2869. border-bottom-right-radius:0px;
  2870. border-bottom-left-radius:0px;
  2871. filter:drop-shadow(none);
  2872. transition:none;
  2873. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2874. font-weight:500;
  2875. font-style:normal;
  2876. font-size:18px;
  2877. color:#1890FF;
  2878. }
  2879. #u45056 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:233px;
  2883. top:444px;
  2884. width:12px;
  2885. height:25px;
  2886. display:flex;
  2887. transition:none;
  2888. transform-origin:50% 50%;
  2889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2890. font-weight:500;
  2891. font-style:normal;
  2892. font-size:18px;
  2893. color:#1890FF;
  2894. }
  2895. #u45056 .text {
  2896. position:absolute;
  2897. align-self:flex-start;
  2898. padding:0px 0px 0px 0px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u45056_text {
  2903. border-width:0px;
  2904. white-space:nowrap;
  2905. text-transform:none;
  2906. }
  2907. #u45057_div {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:37px;
  2913. height:25px;
  2914. background:inherit;
  2915. background-color:rgba(255, 255, 255, 0);
  2916. border-left:0px;
  2917. border-top:0px;
  2918. border-right:0px;
  2919. border-radius:0px;
  2920. border-bottom-right-radius:0px;
  2921. border-bottom-left-radius:0px;
  2922. filter:drop-shadow(none);
  2923. transition:none;
  2924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2925. font-weight:400;
  2926. font-style:normal;
  2927. font-size:12px;
  2928. color:#7F7F7F;
  2929. line-height:25px;
  2930. }
  2931. #u45057 {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:338px;
  2935. top:472px;
  2936. width:37px;
  2937. height:25px;
  2938. display:flex;
  2939. transition:none;
  2940. transform-origin:50% 50%;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:12px;
  2945. color:#7F7F7F;
  2946. line-height:25px;
  2947. }
  2948. #u45057 .text {
  2949. position:absolute;
  2950. align-self:flex-start;
  2951. padding:0px 0px 0px 0px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u45057_text {
  2956. border-width:0px;
  2957. white-space:nowrap;
  2958. text-transform:none;
  2959. }
  2960. #u45058_div {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:12px;
  2966. height:25px;
  2967. background:inherit;
  2968. background-color:rgba(255, 255, 255, 0);
  2969. border-left:0px;
  2970. border-top:0px;
  2971. border-right:0px;
  2972. border-radius:0px;
  2973. border-bottom-right-radius:0px;
  2974. border-bottom-left-radius:0px;
  2975. filter:drop-shadow(none);
  2976. transition:none;
  2977. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2978. font-weight:500;
  2979. font-style:normal;
  2980. font-size:18px;
  2981. color:#1890FF;
  2982. }
  2983. #u45058 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:350px;
  2987. top:444px;
  2988. width:12px;
  2989. height:25px;
  2990. display:flex;
  2991. transition:none;
  2992. transform-origin:50% 50%;
  2993. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2994. font-weight:500;
  2995. font-style:normal;
  2996. font-size:18px;
  2997. color:#1890FF;
  2998. }
  2999. #u45058 .text {
  3000. position:absolute;
  3001. align-self:flex-start;
  3002. padding:0px 0px 0px 0px;
  3003. box-sizing:border-box;
  3004. width:100%;
  3005. }
  3006. #u45058_text {
  3007. border-width:0px;
  3008. white-space:nowrap;
  3009. text-transform:none;
  3010. }
  3011. #u45059 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:0px;
  3017. height:0px;
  3018. }
  3019. #u45060_div {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:375px;
  3025. height:60px;
  3026. background:inherit;
  3027. background-color:rgba(255, 255, 255, 1);
  3028. border-radius:4px;
  3029. filter:drop-shadow(none);
  3030. transition:none;
  3031. }
  3032. #u45060 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:29px;
  3036. top:731px;
  3037. width:375px;
  3038. height:60px;
  3039. display:flex;
  3040. transition:none;
  3041. transform-origin:50% 50%;
  3042. }
  3043. #u45060 .text {
  3044. position:absolute;
  3045. align-self:center;
  3046. padding:2px 2px 2px 2px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u45060_text {
  3051. border-width:0px;
  3052. word-wrap:break-word;
  3053. text-transform:none;
  3054. visibility:hidden;
  3055. }
  3056. #u45061_div {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:140px;
  3062. height:40px;
  3063. background:inherit;
  3064. background-color:rgba(245, 154, 35, 1);
  3065. border-radius:63px;
  3066. filter:drop-shadow(0px 0px 2.5px rgba(245, 154, 35, 1));
  3067. transition:none;
  3068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3069. font-weight:400;
  3070. font-style:normal;
  3071. font-size:14px;
  3072. color:#FFFFFF;
  3073. }
  3074. #u45061 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:61px;
  3078. top:741px;
  3079. width:140px;
  3080. height:40px;
  3081. display:flex;
  3082. transition:none;
  3083. transform-origin:50% 50%;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:14px;
  3088. color:#FFFFFF;
  3089. }
  3090. #u45061 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 2px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u45061_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. }
  3102. #u45062_div {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:140px;
  3108. height:40px;
  3109. background:inherit;
  3110. background-color:rgba(41, 143, 255, 1);
  3111. border-radius:63px;
  3112. filter:drop-shadow(0px 0px 2.5px rgba(41, 143, 255, 1));
  3113. transition:none;
  3114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3115. font-weight:400;
  3116. font-style:normal;
  3117. font-size:14px;
  3118. color:#FFFFFF;
  3119. }
  3120. #u45062 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:231px;
  3124. top:741px;
  3125. width:140px;
  3126. height:40px;
  3127. display:flex;
  3128. transition:none;
  3129. transform-origin:50% 50%;
  3130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. font-size:14px;
  3134. color:#FFFFFF;
  3135. }
  3136. #u45062 .text {
  3137. position:absolute;
  3138. align-self:center;
  3139. padding:2px 2px 2px 2px;
  3140. box-sizing:border-box;
  3141. width:100%;
  3142. }
  3143. #u45062_text {
  3144. border-width:0px;
  3145. word-wrap:break-word;
  3146. text-transform:none;
  3147. }
  3148. #u45063_div {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:376px;
  3154. height:80px;
  3155. background:inherit;
  3156. background-color:rgba(255, 255, 255, 1);
  3157. border-radius:4px;
  3158. filter:drop-shadow(none);
  3159. transition:none;
  3160. }
  3161. #u45063 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:28px;
  3165. top:106px;
  3166. width:376px;
  3167. height:80px;
  3168. display:flex;
  3169. transition:none;
  3170. transform-origin:50% 50%;
  3171. }
  3172. #u45063 .text {
  3173. position:absolute;
  3174. align-self:center;
  3175. padding:2px 2px 2px 2px;
  3176. box-sizing:border-box;
  3177. width:100%;
  3178. }
  3179. #u45063_text {
  3180. border-width:0px;
  3181. word-wrap:break-word;
  3182. text-transform:none;
  3183. visibility:hidden;
  3184. }
  3185. #u45064 {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:0px;
  3191. height:0px;
  3192. }
  3193. #u45065_div {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:30px;
  3199. height:25px;
  3200. background:inherit;
  3201. background-color:rgba(255, 255, 255, 0);
  3202. border-left:0px;
  3203. border-top:0px;
  3204. border-right:0px;
  3205. border-radius:0px;
  3206. border-bottom-right-radius:0px;
  3207. border-bottom-left-radius:0px;
  3208. filter:drop-shadow(none);
  3209. transition:none;
  3210. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3211. font-weight:500;
  3212. font-style:normal;
  3213. font-size:18px;
  3214. }
  3215. #u45065 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:58px;
  3219. top:123px;
  3220. width:30px;
  3221. height:25px;
  3222. display:flex;
  3223. transition:none;
  3224. transform-origin:50% 50%;
  3225. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3226. font-weight:500;
  3227. font-style:normal;
  3228. font-size:18px;
  3229. }
  3230. #u45065 .text {
  3231. position:absolute;
  3232. align-self:flex-start;
  3233. padding:0px 0px 0px 0px;
  3234. box-sizing:border-box;
  3235. width:100%;
  3236. }
  3237. #u45065_text {
  3238. border-width:0px;
  3239. white-space:nowrap;
  3240. text-transform:none;
  3241. }
  3242. #u45066_div {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:0px;
  3247. width:49px;
  3248. height:17px;
  3249. background:inherit;
  3250. background-color:rgba(255, 255, 255, 0);
  3251. border-left:0px;
  3252. border-top:0px;
  3253. border-right:0px;
  3254. border-radius:0px;
  3255. border-bottom-right-radius:0px;
  3256. border-bottom-left-radius:0px;
  3257. filter:drop-shadow(none);
  3258. transition:none;
  3259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. font-size:12px;
  3263. }
  3264. #u45066 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:49px;
  3268. top:150px;
  3269. width:49px;
  3270. height:17px;
  3271. display:flex;
  3272. transition:none;
  3273. transform-origin:50% 50%;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:12px;
  3278. }
  3279. #u45066 .text {
  3280. position:absolute;
  3281. align-self:flex-start;
  3282. padding:0px 0px 0px 0px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u45066_text {
  3287. border-width:0px;
  3288. white-space:nowrap;
  3289. text-transform:none;
  3290. }
  3291. #u45067 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:0px;
  3297. height:0px;
  3298. }
  3299. #u45068_div {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:30px;
  3305. height:25px;
  3306. background:inherit;
  3307. background-color:rgba(255, 255, 255, 0);
  3308. border-left:0px;
  3309. border-top:0px;
  3310. border-right:0px;
  3311. border-radius:0px;
  3312. border-bottom-right-radius:0px;
  3313. border-bottom-left-radius:0px;
  3314. filter:drop-shadow(none);
  3315. transition:none;
  3316. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3317. font-weight:500;
  3318. font-style:normal;
  3319. font-size:18px;
  3320. }
  3321. #u45068 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:143px;
  3325. top:124px;
  3326. width:30px;
  3327. height:25px;
  3328. display:flex;
  3329. transition:none;
  3330. transform-origin:50% 50%;
  3331. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3332. font-weight:500;
  3333. font-style:normal;
  3334. font-size:18px;
  3335. }
  3336. #u45068 .text {
  3337. position:absolute;
  3338. align-self:flex-start;
  3339. padding:0px 0px 0px 0px;
  3340. box-sizing:border-box;
  3341. width:100%;
  3342. }
  3343. #u45068_text {
  3344. border-width:0px;
  3345. white-space:nowrap;
  3346. text-transform:none;
  3347. }
  3348. #u45069_div {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:37px;
  3354. height:17px;
  3355. background:inherit;
  3356. background-color:rgba(255, 255, 255, 0);
  3357. border-left:0px;
  3358. border-top:0px;
  3359. border-right:0px;
  3360. border-radius:0px;
  3361. border-bottom-right-radius:0px;
  3362. border-bottom-left-radius:0px;
  3363. filter:drop-shadow(none);
  3364. transition:none;
  3365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:12px;
  3369. }
  3370. #u45069 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:140px;
  3374. top:149px;
  3375. width:37px;
  3376. height:17px;
  3377. display:flex;
  3378. transition:none;
  3379. transform-origin:50% 50%;
  3380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3381. font-weight:400;
  3382. font-style:normal;
  3383. font-size:12px;
  3384. }
  3385. #u45069 .text {
  3386. position:absolute;
  3387. align-self:flex-start;
  3388. padding:0px 0px 0px 0px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u45069_text {
  3393. border-width:0px;
  3394. white-space:nowrap;
  3395. text-transform:none;
  3396. }
  3397. #u45070 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:0px;
  3403. height:0px;
  3404. }
  3405. #u45071_div {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:30px;
  3411. height:25px;
  3412. background:inherit;
  3413. background-color:rgba(255, 255, 255, 0);
  3414. border-left:0px;
  3415. border-top:0px;
  3416. border-right:0px;
  3417. border-radius:0px;
  3418. border-bottom-right-radius:0px;
  3419. border-bottom-left-radius:0px;
  3420. filter:drop-shadow(none);
  3421. transition:none;
  3422. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3423. font-weight:500;
  3424. font-style:normal;
  3425. font-size:18px;
  3426. }
  3427. #u45071 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:223px;
  3431. top:124px;
  3432. width:30px;
  3433. height:25px;
  3434. display:flex;
  3435. transition:none;
  3436. transform-origin:50% 50%;
  3437. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3438. font-weight:500;
  3439. font-style:normal;
  3440. font-size:18px;
  3441. }
  3442. #u45071 .text {
  3443. position:absolute;
  3444. align-self:flex-start;
  3445. padding:0px 0px 0px 0px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u45071_text {
  3450. border-width:0px;
  3451. white-space:nowrap;
  3452. text-transform:none;
  3453. }
  3454. #u45072_div {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:37px;
  3460. height:17px;
  3461. background:inherit;
  3462. background-color:rgba(255, 255, 255, 0);
  3463. border-left:0px;
  3464. border-top:0px;
  3465. border-right:0px;
  3466. border-radius:0px;
  3467. border-bottom-right-radius:0px;
  3468. border-bottom-left-radius:0px;
  3469. filter:drop-shadow(none);
  3470. transition:none;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:12px;
  3475. }
  3476. #u45072 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:219px;
  3480. top:149px;
  3481. width:37px;
  3482. height:17px;
  3483. display:flex;
  3484. transition:none;
  3485. transform-origin:50% 50%;
  3486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3487. font-weight:400;
  3488. font-style:normal;
  3489. font-size:12px;
  3490. }
  3491. #u45072 .text {
  3492. position:absolute;
  3493. align-self:flex-start;
  3494. padding:0px 0px 0px 0px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u45072_text {
  3499. border-width:0px;
  3500. white-space:nowrap;
  3501. text-transform:none;
  3502. }
  3503. #u45073 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:0px;
  3509. height:0px;
  3510. }
  3511. #u45074_div {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:23px;
  3517. height:25px;
  3518. background:inherit;
  3519. background-color:rgba(255, 255, 255, 0);
  3520. border-left:0px;
  3521. border-top:0px;
  3522. border-right:0px;
  3523. border-radius:0px;
  3524. border-bottom-right-radius:0px;
  3525. border-bottom-left-radius:0px;
  3526. filter:drop-shadow(none);
  3527. transition:none;
  3528. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3529. font-weight:500;
  3530. font-style:normal;
  3531. font-size:18px;
  3532. }
  3533. #u45074 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:349px;
  3537. top:121px;
  3538. width:23px;
  3539. height:25px;
  3540. display:flex;
  3541. transition:none;
  3542. transform-origin:50% 50%;
  3543. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3544. font-weight:500;
  3545. font-style:normal;
  3546. font-size:18px;
  3547. }
  3548. #u45074 .text {
  3549. position:absolute;
  3550. align-self:flex-start;
  3551. padding:0px 0px 0px 0px;
  3552. box-sizing:border-box;
  3553. width:100%;
  3554. }
  3555. #u45074_text {
  3556. border-width:0px;
  3557. white-space:nowrap;
  3558. text-transform:none;
  3559. }
  3560. #u45075_div {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:37px;
  3566. height:17px;
  3567. background:inherit;
  3568. background-color:rgba(255, 255, 255, 0);
  3569. border-left:0px;
  3570. border-top:0px;
  3571. border-right:0px;
  3572. border-radius:0px;
  3573. border-bottom-right-radius:0px;
  3574. border-bottom-left-radius:0px;
  3575. filter:drop-shadow(none);
  3576. transition:none;
  3577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3578. font-weight:400;
  3579. font-style:normal;
  3580. font-size:12px;
  3581. }
  3582. #u45075 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:341px;
  3586. top:152px;
  3587. width:37px;
  3588. height:17px;
  3589. display:flex;
  3590. transition:none;
  3591. transform-origin:50% 50%;
  3592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:12px;
  3596. }
  3597. #u45075 .text {
  3598. position:absolute;
  3599. align-self:flex-start;
  3600. padding:0px 0px 0px 0px;
  3601. box-sizing:border-box;
  3602. width:100%;
  3603. }
  3604. #u45075_text {
  3605. border-width:0px;
  3606. white-space:nowrap;
  3607. text-transform:none;
  3608. }
  3609. #u45076 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:298px;
  3613. top:131px;
  3614. width:1px;
  3615. height:28px;
  3616. display:flex;
  3617. transition:none;
  3618. }
  3619. #u45076 .text {
  3620. position:absolute;
  3621. align-self:center;
  3622. padding:2px 2px 2px 2px;
  3623. box-sizing:border-box;
  3624. width:100%;
  3625. }
  3626. #u45076_img {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:0px;
  3630. top:0px;
  3631. width:2px;
  3632. height:29px;
  3633. }
  3634. #u45076_text {
  3635. border-width:0px;
  3636. word-wrap:break-word;
  3637. text-transform:none;
  3638. visibility:hidden;
  3639. }
  3640. #u45077_div {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:48px;
  3646. height:14px;
  3647. background:inherit;
  3648. background-color:rgba(51, 51, 51, 1);
  3649. border-radius:2px;
  3650. filter:drop-shadow(none);
  3651. transition:none;
  3652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3653. font-weight:400;
  3654. font-style:normal;
  3655. font-size:10px;
  3656. color:#FFFFFF;
  3657. text-align:center;
  3658. }
  3659. #u45077 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:55px;
  3663. top:731px;
  3664. width:48px;
  3665. height:14px;
  3666. display:flex;
  3667. transition:none;
  3668. transform-origin:50% 50%;
  3669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:10px;
  3673. color:#FFFFFF;
  3674. text-align:center;
  3675. }
  3676. #u45077 .text {
  3677. position:absolute;
  3678. align-self:flex-start;
  3679. padding:0px 2px 0px 2px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u45077_text {
  3684. border-width:0px;
  3685. white-space:nowrap;
  3686. text-transform:none;
  3687. }