styles.css 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240
  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. #u4610_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u4610 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u4610 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u4610_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u4611_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u4611 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u4611 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u4611_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u4612 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u4613_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u4613 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u4613 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u4613_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u4614 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u4615_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u4615 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u4615 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u4615_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u4616_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u4616 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u4616 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u4616_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u4617 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u4618_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u4618 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u4618 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u4618_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u4619_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u4619 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u4619 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u4619_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u4620_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u4620 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u4620 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u4620_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u4621_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u4621 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u4621 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u4621_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u4622_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u4622 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u4622 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u4622_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u4623_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u4623 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u4623 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u4623_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u4624 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u4625_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u4625 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u4625 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u4625_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u4626_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u4626 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u4626 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u4626_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u4627 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u4628_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u4628 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u4628 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u4628_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u4629_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u4629 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u4629 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u4629_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u4630_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u4630 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u4630 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u4630_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u4631 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u4632_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u4632 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u4632 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u4632_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u4633_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u4633 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u4633 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u4633_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u4634 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u4635_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u4635 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u4635 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u4635_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u4636_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u4636 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u4636 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u4636_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u4637_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:40px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(215, 215, 215, 1);
  792. border-left:0px;
  793. border-top:0px;
  794. border-right:0px;
  795. border-radius:0px;
  796. border-bottom-right-radius:0px;
  797. border-bottom-left-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. }
  802. #u4637 {
  803. border-width:0px;
  804. position:absolute;
  805. left:29px;
  806. top:67px;
  807. width:375px;
  808. height:40px;
  809. display:flex;
  810. }
  811. #u4637 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:2px 2px 2px 2px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u4637_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u4638_img {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:375px;
  830. height:44px;
  831. }
  832. #u4638 {
  833. border-width:0px;
  834. position:absolute;
  835. left:29px;
  836. top:24px;
  837. width:375px;
  838. height:44px;
  839. display:flex;
  840. }
  841. #u4638 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 2px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u4638_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u4639 {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:0px;
  860. height:0px;
  861. }
  862. #u4640_div {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:88px;
  868. height:32px;
  869. background:inherit;
  870. background-color:rgba(255, 255, 255, 1);
  871. box-sizing:border-box;
  872. border-width:1px;
  873. border-style:solid;
  874. border-color:rgba(242, 242, 242, 1);
  875. border-radius:33px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. }
  880. #u4640 {
  881. border-width:0px;
  882. position:absolute;
  883. left:309px;
  884. top:71px;
  885. width:88px;
  886. height:32px;
  887. display:flex;
  888. }
  889. #u4640 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u4640_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u4641 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u4642_img {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:18px;
  916. height:18px;
  917. }
  918. #u4642 {
  919. border-width:0px;
  920. position:absolute;
  921. left:372px;
  922. top:78px;
  923. width:18px;
  924. height:18px;
  925. display:flex;
  926. }
  927. #u4642 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u4642_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. visibility:hidden;
  939. }
  940. #u4643_img {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:6px;
  946. height:6px;
  947. }
  948. #u4643 {
  949. border-width:0px;
  950. position:absolute;
  951. left:378px;
  952. top:84px;
  953. width:6px;
  954. height:6px;
  955. display:flex;
  956. }
  957. #u4643 .text {
  958. position:absolute;
  959. align-self:center;
  960. padding:2px 2px 2px 2px;
  961. box-sizing:border-box;
  962. width:100%;
  963. }
  964. #u4643_text {
  965. border-width:0px;
  966. word-wrap:break-word;
  967. text-transform:none;
  968. visibility:hidden;
  969. }
  970. #u4644 {
  971. border-width:0px;
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:0px;
  976. height:0px;
  977. }
  978. #u4645_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:5px;
  984. height:5px;
  985. }
  986. #u4645 {
  987. border-width:0px;
  988. position:absolute;
  989. left:323px;
  990. top:85px;
  991. width:5px;
  992. height:5px;
  993. display:flex;
  994. }
  995. #u4645 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u4645_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. visibility:hidden;
  1007. }
  1008. #u4646_img {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:5px;
  1014. height:5px;
  1015. }
  1016. #u4646 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:339px;
  1020. top:85px;
  1021. width:5px;
  1022. height:5px;
  1023. display:flex;
  1024. }
  1025. #u4646 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u4646_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u4647_img {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:7px;
  1044. height:7px;
  1045. }
  1046. #u4647 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:330px;
  1050. top:84px;
  1051. width:7px;
  1052. height:7px;
  1053. display:flex;
  1054. }
  1055. #u4647 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u4647_text {
  1063. border-width:0px;
  1064. word-wrap:break-word;
  1065. text-transform:none;
  1066. visibility:hidden;
  1067. }
  1068. #u4648_img {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:0px;
  1073. width:19px;
  1074. height:2px;
  1075. }
  1076. #u4648 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:347px;
  1080. top:87px;
  1081. width:18px;
  1082. height:1px;
  1083. display:flex;
  1084. -webkit-transform:rotate(90deg);
  1085. -moz-transform:rotate(90deg);
  1086. -ms-transform:rotate(90deg);
  1087. transform:rotate(90deg);
  1088. }
  1089. #u4648 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u4648_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u4649 {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:0px;
  1108. height:0px;
  1109. }
  1110. #u4650_div {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:0px;
  1114. top:0px;
  1115. width:375px;
  1116. height:50px;
  1117. background:inherit;
  1118. background-color:rgba(255, 255, 255, 1);
  1119. box-sizing:border-box;
  1120. border-width:1px;
  1121. border-style:solid;
  1122. border-color:rgba(242, 242, 242, 1);
  1123. border-radius:26px;
  1124. border-top-left-radius:0px;
  1125. border-top-right-radius:0px;
  1126. -moz-box-shadow:none;
  1127. -webkit-box-shadow:none;
  1128. box-shadow:none;
  1129. }
  1130. #u4650 {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:31px;
  1134. top:789px;
  1135. width:375px;
  1136. height:50px;
  1137. display:flex;
  1138. }
  1139. #u4650 .text {
  1140. position:absolute;
  1141. align-self:center;
  1142. padding:2px 2px 2px 2px;
  1143. box-sizing:border-box;
  1144. width:100%;
  1145. }
  1146. #u4650_text {
  1147. border-width:0px;
  1148. word-wrap:break-word;
  1149. text-transform:none;
  1150. visibility:hidden;
  1151. }
  1152. #u4651 {
  1153. border-width:0px;
  1154. position:absolute;
  1155. left:0px;
  1156. top:0px;
  1157. width:0px;
  1158. height:0px;
  1159. }
  1160. #u4652_img {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:0px;
  1164. top:0px;
  1165. width:24px;
  1166. height:24px;
  1167. }
  1168. #u4652 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:329px;
  1172. top:793px;
  1173. width:24px;
  1174. height:24px;
  1175. display:flex;
  1176. font-size:8px;
  1177. }
  1178. #u4652 .text {
  1179. position:absolute;
  1180. align-self:center;
  1181. padding:2px 2px 2px 2px;
  1182. box-sizing:border-box;
  1183. width:100%;
  1184. }
  1185. #u4652_text {
  1186. border-width:0px;
  1187. word-wrap:break-word;
  1188. text-transform:none;
  1189. }
  1190. #u4653_div {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:0px;
  1194. top:0px;
  1195. width:49px;
  1196. height:17px;
  1197. background:inherit;
  1198. background-color:rgba(255, 255, 255, 0);
  1199. border:none;
  1200. border-radius:0px;
  1201. -moz-box-shadow:none;
  1202. -webkit-box-shadow:none;
  1203. box-shadow:none;
  1204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1205. font-weight:400;
  1206. font-style:normal;
  1207. font-size:12px;
  1208. }
  1209. #u4653 {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:317px;
  1213. top:818px;
  1214. width:49px;
  1215. height:17px;
  1216. display:flex;
  1217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1218. font-weight:400;
  1219. font-style:normal;
  1220. font-size:12px;
  1221. }
  1222. #u4653 .text {
  1223. position:absolute;
  1224. align-self:flex-start;
  1225. padding:0px 0px 0px 0px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u4653_text {
  1230. border-width:0px;
  1231. white-space:nowrap;
  1232. text-transform:none;
  1233. }
  1234. #u4654 {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:0px;
  1240. height:0px;
  1241. }
  1242. #u4655_div {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:0px;
  1246. top:0px;
  1247. width:49px;
  1248. height:17px;
  1249. background:inherit;
  1250. background-color:rgba(255, 255, 255, 0);
  1251. border:none;
  1252. border-radius:0px;
  1253. -moz-box-shadow:none;
  1254. -webkit-box-shadow:none;
  1255. box-shadow:none;
  1256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1257. font-weight:400;
  1258. font-style:normal;
  1259. font-size:12px;
  1260. }
  1261. #u4655 {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:194px;
  1265. top:818px;
  1266. width:49px;
  1267. height:17px;
  1268. display:flex;
  1269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1270. font-weight:400;
  1271. font-style:normal;
  1272. font-size:12px;
  1273. }
  1274. #u4655 .text {
  1275. position:absolute;
  1276. align-self:flex-start;
  1277. padding:0px 0px 0px 0px;
  1278. box-sizing:border-box;
  1279. width:100%;
  1280. }
  1281. #u4655_text {
  1282. border-width:0px;
  1283. white-space:nowrap;
  1284. text-transform:none;
  1285. }
  1286. #u4656_img {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:24px;
  1292. height:24px;
  1293. }
  1294. #u4656 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:205px;
  1298. top:793px;
  1299. width:24px;
  1300. height:24px;
  1301. display:flex;
  1302. font-size:8px;
  1303. }
  1304. #u4656 .text {
  1305. position:absolute;
  1306. align-self:center;
  1307. padding:2px 2px 2px 2px;
  1308. box-sizing:border-box;
  1309. width:100%;
  1310. }
  1311. #u4656_text {
  1312. border-width:0px;
  1313. word-wrap:break-word;
  1314. text-transform:none;
  1315. }
  1316. #u4657 {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:0px;
  1320. top:0px;
  1321. width:0px;
  1322. height:0px;
  1323. }
  1324. #u4658_div {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:49px;
  1330. height:17px;
  1331. background:inherit;
  1332. background-color:rgba(255, 255, 255, 0);
  1333. border:none;
  1334. border-radius:0px;
  1335. -moz-box-shadow:none;
  1336. -webkit-box-shadow:none;
  1337. box-shadow:none;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:12px;
  1342. }
  1343. #u4658 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:71px;
  1347. top:818px;
  1348. width:49px;
  1349. height:17px;
  1350. display:flex;
  1351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1352. font-weight:400;
  1353. font-style:normal;
  1354. font-size:12px;
  1355. }
  1356. #u4658 .text {
  1357. position:absolute;
  1358. align-self:flex-start;
  1359. padding:0px 0px 0px 0px;
  1360. box-sizing:border-box;
  1361. width:100%;
  1362. }
  1363. #u4658_text {
  1364. border-width:0px;
  1365. white-space:nowrap;
  1366. text-transform:none;
  1367. }
  1368. #u4659_img {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:0px;
  1372. top:0px;
  1373. width:24px;
  1374. height:24px;
  1375. }
  1376. #u4659 {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:84px;
  1380. top:794px;
  1381. width:24px;
  1382. height:24px;
  1383. display:flex;
  1384. font-size:8px;
  1385. color:#FFFFFF;
  1386. }
  1387. #u4659 .text {
  1388. position:absolute;
  1389. align-self:center;
  1390. padding:2px 2px 2px 2px;
  1391. box-sizing:border-box;
  1392. width:100%;
  1393. }
  1394. #u4659_text {
  1395. border-width:0px;
  1396. word-wrap:break-word;
  1397. text-transform:none;
  1398. }
  1399. #u4660_div {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:0px;
  1403. top:0px;
  1404. width:65px;
  1405. height:22px;
  1406. background:inherit;
  1407. background-color:rgba(255, 255, 255, 0);
  1408. border:none;
  1409. border-radius:0px;
  1410. -moz-box-shadow:none;
  1411. -webkit-box-shadow:none;
  1412. box-shadow:none;
  1413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1414. font-weight:400;
  1415. font-style:normal;
  1416. font-size:16px;
  1417. color:#000000;
  1418. }
  1419. #u4660 {
  1420. border-width:0px;
  1421. position:absolute;
  1422. left:187px;
  1423. top:78px;
  1424. width:65px;
  1425. height:22px;
  1426. display:flex;
  1427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1428. font-weight:400;
  1429. font-style:normal;
  1430. font-size:16px;
  1431. color:#000000;
  1432. }
  1433. #u4660 .text {
  1434. position:absolute;
  1435. align-self:flex-start;
  1436. padding:0px 0px 0px 0px;
  1437. box-sizing:border-box;
  1438. width:100%;
  1439. }
  1440. #u4660_text {
  1441. border-width:0px;
  1442. white-space:nowrap;
  1443. text-transform:none;
  1444. }
  1445. #u4661_div {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:0px;
  1449. top:0px;
  1450. width:12px;
  1451. height:12px;
  1452. background:inherit;
  1453. background-color:rgba(255, 255, 255, 0);
  1454. box-sizing:border-box;
  1455. border-width:2px;
  1456. border-style:solid;
  1457. border-color:rgba(51, 51, 51, 1);
  1458. border-right:0px;
  1459. border-bottom:0px;
  1460. border-radius:0px;
  1461. border-top-right-radius:0px;
  1462. border-bottom-left-radius:0px;
  1463. -moz-box-shadow:none;
  1464. -webkit-box-shadow:none;
  1465. box-shadow:none;
  1466. }
  1467. #u4661 {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:41px;
  1471. top:78px;
  1472. width:12px;
  1473. height:12px;
  1474. display:flex;
  1475. -webkit-transform:rotate(315deg);
  1476. -moz-transform:rotate(315deg);
  1477. -ms-transform:rotate(315deg);
  1478. transform:rotate(315deg);
  1479. }
  1480. #u4661 .text {
  1481. position:absolute;
  1482. align-self:center;
  1483. padding:2px 2px 2px 2px;
  1484. box-sizing:border-box;
  1485. width:100%;
  1486. }
  1487. #u4661_text {
  1488. border-width:0px;
  1489. word-wrap:break-word;
  1490. text-transform:none;
  1491. visibility:hidden;
  1492. }
  1493. #u4662_img {
  1494. border-width:0px;
  1495. position:absolute;
  1496. left:0px;
  1497. top:0px;
  1498. width:23px;
  1499. height:23px;
  1500. }
  1501. #u4662 {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:68px;
  1505. top:73px;
  1506. width:23px;
  1507. height:23px;
  1508. display:flex;
  1509. }
  1510. #u4662 .text {
  1511. position:absolute;
  1512. align-self:center;
  1513. padding:2px 2px 2px 2px;
  1514. box-sizing:border-box;
  1515. width:100%;
  1516. }
  1517. #u4662_text {
  1518. border-width:0px;
  1519. word-wrap:break-word;
  1520. text-transform:none;
  1521. visibility:hidden;
  1522. }
  1523. #u4663_div {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:0px;
  1527. top:0px;
  1528. width:375px;
  1529. height:683px;
  1530. background:inherit;
  1531. background-color:rgba(242, 242, 242, 0.996078431372549);
  1532. border:none;
  1533. border-radius:0px;
  1534. -moz-box-shadow:none;
  1535. -webkit-box-shadow:none;
  1536. box-shadow:none;
  1537. }
  1538. #u4663 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:29px;
  1542. top:106px;
  1543. width:375px;
  1544. height:683px;
  1545. display:flex;
  1546. }
  1547. #u4663 .text {
  1548. position:absolute;
  1549. align-self:center;
  1550. padding:2px 2px 2px 2px;
  1551. box-sizing:border-box;
  1552. width:100%;
  1553. }
  1554. #u4663_text {
  1555. border-width:0px;
  1556. word-wrap:break-word;
  1557. text-transform:none;
  1558. visibility:hidden;
  1559. }
  1560. #u4664_div {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:0px;
  1564. top:0px;
  1565. width:375px;
  1566. height:40px;
  1567. background:inherit;
  1568. background-color:rgba(255, 255, 255, 1);
  1569. box-sizing:border-box;
  1570. border-width:1px;
  1571. border-style:solid;
  1572. border-color:rgba(215, 215, 215, 1);
  1573. border-left:0px;
  1574. border-top:0px;
  1575. border-right:0px;
  1576. border-radius:0px;
  1577. border-bottom-right-radius:0px;
  1578. border-bottom-left-radius:0px;
  1579. -moz-box-shadow:none;
  1580. -webkit-box-shadow:none;
  1581. box-shadow:none;
  1582. }
  1583. #u4664 {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:29px;
  1587. top:67px;
  1588. width:375px;
  1589. height:40px;
  1590. display:flex;
  1591. }
  1592. #u4664 .text {
  1593. position:absolute;
  1594. align-self:center;
  1595. padding:2px 2px 2px 2px;
  1596. box-sizing:border-box;
  1597. width:100%;
  1598. }
  1599. #u4664_text {
  1600. border-width:0px;
  1601. word-wrap:break-word;
  1602. text-transform:none;
  1603. visibility:hidden;
  1604. }
  1605. #u4665 {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:0px;
  1611. height:0px;
  1612. }
  1613. #u4666_div {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:0px;
  1617. top:0px;
  1618. width:88px;
  1619. height:32px;
  1620. background:inherit;
  1621. background-color:rgba(255, 255, 255, 1);
  1622. box-sizing:border-box;
  1623. border-width:1px;
  1624. border-style:solid;
  1625. border-color:rgba(242, 242, 242, 1);
  1626. border-radius:33px;
  1627. -moz-box-shadow:none;
  1628. -webkit-box-shadow:none;
  1629. box-shadow:none;
  1630. }
  1631. #u4666 {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:309px;
  1635. top:71px;
  1636. width:88px;
  1637. height:32px;
  1638. display:flex;
  1639. }
  1640. #u4666 .text {
  1641. position:absolute;
  1642. align-self:center;
  1643. padding:2px 2px 2px 2px;
  1644. box-sizing:border-box;
  1645. width:100%;
  1646. }
  1647. #u4666_text {
  1648. border-width:0px;
  1649. word-wrap:break-word;
  1650. text-transform:none;
  1651. visibility:hidden;
  1652. }
  1653. #u4667 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:0px;
  1659. height:0px;
  1660. }
  1661. #u4668_img {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:18px;
  1667. height:18px;
  1668. }
  1669. #u4668 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:372px;
  1673. top:78px;
  1674. width:18px;
  1675. height:18px;
  1676. display:flex;
  1677. }
  1678. #u4668 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 2px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u4668_text {
  1686. border-width:0px;
  1687. word-wrap:break-word;
  1688. text-transform:none;
  1689. visibility:hidden;
  1690. }
  1691. #u4669_img {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:6px;
  1697. height:6px;
  1698. }
  1699. #u4669 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:378px;
  1703. top:84px;
  1704. width:6px;
  1705. height:6px;
  1706. display:flex;
  1707. }
  1708. #u4669 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u4669_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. visibility:hidden;
  1720. }
  1721. #u4670 {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:0px;
  1727. height:0px;
  1728. }
  1729. #u4671_img {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:5px;
  1735. height:5px;
  1736. }
  1737. #u4671 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:323px;
  1741. top:85px;
  1742. width:5px;
  1743. height:5px;
  1744. display:flex;
  1745. }
  1746. #u4671 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u4671_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u4672_img {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:5px;
  1765. height:5px;
  1766. }
  1767. #u4672 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:339px;
  1771. top:85px;
  1772. width:5px;
  1773. height:5px;
  1774. display:flex;
  1775. }
  1776. #u4672 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u4672_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. visibility:hidden;
  1788. }
  1789. #u4673_img {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:7px;
  1795. height:7px;
  1796. }
  1797. #u4673 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:330px;
  1801. top:84px;
  1802. width:7px;
  1803. height:7px;
  1804. display:flex;
  1805. }
  1806. #u4673 .text {
  1807. position:absolute;
  1808. align-self:center;
  1809. padding:2px 2px 2px 2px;
  1810. box-sizing:border-box;
  1811. width:100%;
  1812. }
  1813. #u4673_text {
  1814. border-width:0px;
  1815. word-wrap:break-word;
  1816. text-transform:none;
  1817. visibility:hidden;
  1818. }
  1819. #u4674_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:19px;
  1825. height:2px;
  1826. }
  1827. #u4674 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:347px;
  1831. top:87px;
  1832. width:18px;
  1833. height:1px;
  1834. display:flex;
  1835. -webkit-transform:rotate(90deg);
  1836. -moz-transform:rotate(90deg);
  1837. -ms-transform:rotate(90deg);
  1838. transform:rotate(90deg);
  1839. }
  1840. #u4674 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:2px 2px 2px 2px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u4674_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. visibility:hidden;
  1852. }
  1853. #u4675_div {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:65px;
  1859. height:22px;
  1860. background:inherit;
  1861. background-color:rgba(255, 255, 255, 0);
  1862. border:none;
  1863. border-radius:0px;
  1864. -moz-box-shadow:none;
  1865. -webkit-box-shadow:none;
  1866. box-shadow:none;
  1867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1868. font-weight:400;
  1869. font-style:normal;
  1870. font-size:16px;
  1871. color:#000000;
  1872. }
  1873. #u4675 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:187px;
  1877. top:78px;
  1878. width:65px;
  1879. height:22px;
  1880. display:flex;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:16px;
  1885. color:#000000;
  1886. }
  1887. #u4675 .text {
  1888. position:absolute;
  1889. align-self:flex-start;
  1890. padding:0px 0px 0px 0px;
  1891. box-sizing:border-box;
  1892. width:100%;
  1893. }
  1894. #u4675_text {
  1895. border-width:0px;
  1896. white-space:nowrap;
  1897. text-transform:none;
  1898. }
  1899. #u4676_div {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:12px;
  1905. height:12px;
  1906. background:inherit;
  1907. background-color:rgba(255, 255, 255, 0);
  1908. box-sizing:border-box;
  1909. border-width:2px;
  1910. border-style:solid;
  1911. border-color:rgba(51, 51, 51, 1);
  1912. border-right:0px;
  1913. border-bottom:0px;
  1914. border-radius:0px;
  1915. border-top-right-radius:0px;
  1916. border-bottom-left-radius:0px;
  1917. -moz-box-shadow:none;
  1918. -webkit-box-shadow:none;
  1919. box-shadow:none;
  1920. }
  1921. #u4676 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:46px;
  1925. top:81px;
  1926. width:12px;
  1927. height:12px;
  1928. display:flex;
  1929. -webkit-transform:rotate(315deg);
  1930. -moz-transform:rotate(315deg);
  1931. -ms-transform:rotate(315deg);
  1932. transform:rotate(315deg);
  1933. }
  1934. #u4676 .text {
  1935. position:absolute;
  1936. align-self:center;
  1937. padding:2px 2px 2px 2px;
  1938. box-sizing:border-box;
  1939. width:100%;
  1940. }
  1941. #u4676_text {
  1942. border-width:0px;
  1943. word-wrap:break-word;
  1944. text-transform:none;
  1945. visibility:hidden;
  1946. }
  1947. #u4677_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:23px;
  1953. height:23px;
  1954. }
  1955. #u4677 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:73px;
  1959. top:76px;
  1960. width:23px;
  1961. height:23px;
  1962. display:flex;
  1963. }
  1964. #u4677 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:2px 2px 2px 2px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u4677_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. visibility:hidden;
  1976. }
  1977. #u4678 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:0px;
  1983. height:0px;
  1984. }
  1985. #u4679_div {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:358px;
  1991. height:156px;
  1992. background:inherit;
  1993. background-color:rgba(255, 255, 255, 1);
  1994. border:none;
  1995. border-radius:10px;
  1996. -moz-box-shadow:none;
  1997. -webkit-box-shadow:none;
  1998. box-shadow:none;
  1999. }
  2000. #u4679 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:39px;
  2004. top:188px;
  2005. width:358px;
  2006. height:156px;
  2007. display:flex;
  2008. }
  2009. #u4679 .text {
  2010. position:absolute;
  2011. align-self:center;
  2012. padding:2px 2px 2px 2px;
  2013. box-sizing:border-box;
  2014. width:100%;
  2015. }
  2016. #u4679_text {
  2017. border-width:0px;
  2018. word-wrap:break-word;
  2019. text-transform:none;
  2020. visibility:hidden;
  2021. }
  2022. #u4680 {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:0px;
  2028. height:0px;
  2029. }
  2030. #u4681_div {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:29px;
  2036. height:20px;
  2037. background:inherit;
  2038. background-color:rgba(255, 255, 255, 0);
  2039. border:none;
  2040. border-radius:0px;
  2041. -moz-box-shadow:none;
  2042. -webkit-box-shadow:none;
  2043. box-shadow:none;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. color:#000000;
  2048. text-align:center;
  2049. }
  2050. #u4681 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:68px;
  2054. top:256px;
  2055. width:29px;
  2056. height:20px;
  2057. display:flex;
  2058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2059. font-weight:400;
  2060. font-style:normal;
  2061. color:#000000;
  2062. text-align:center;
  2063. }
  2064. #u4681 .text {
  2065. position:absolute;
  2066. align-self:flex-start;
  2067. padding:0px 0px 0px 0px;
  2068. box-sizing:border-box;
  2069. width:100%;
  2070. }
  2071. #u4681_text {
  2072. border-width:0px;
  2073. white-space:nowrap;
  2074. text-transform:none;
  2075. }
  2076. #u4682_div {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:12px;
  2082. height:25px;
  2083. background:inherit;
  2084. background-color:rgba(255, 255, 255, 0);
  2085. border:none;
  2086. border-radius:0px;
  2087. -moz-box-shadow:none;
  2088. -webkit-box-shadow:none;
  2089. box-shadow:none;
  2090. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2091. font-weight:500;
  2092. font-style:normal;
  2093. font-size:18px;
  2094. color:#00BFBF;
  2095. text-align:center;
  2096. }
  2097. #u4682 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:76px;
  2101. top:233px;
  2102. width:12px;
  2103. height:25px;
  2104. display:flex;
  2105. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2106. font-weight:500;
  2107. font-style:normal;
  2108. font-size:18px;
  2109. color:#00BFBF;
  2110. text-align:center;
  2111. }
  2112. #u4682 .text {
  2113. position:absolute;
  2114. align-self:flex-start;
  2115. padding:0px 0px 0px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u4682_text {
  2120. border-width:0px;
  2121. white-space:nowrap;
  2122. text-transform:none;
  2123. }
  2124. #u4683 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:0px;
  2130. height:0px;
  2131. }
  2132. #u4684_div {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:43px;
  2138. height:20px;
  2139. background:inherit;
  2140. background-color:rgba(255, 255, 255, 0);
  2141. border:none;
  2142. border-radius:0px;
  2143. -moz-box-shadow:none;
  2144. -webkit-box-shadow:none;
  2145. box-shadow:none;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. color:#000000;
  2150. text-align:center;
  2151. }
  2152. #u4684 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:145px;
  2156. top:256px;
  2157. width:43px;
  2158. height:20px;
  2159. display:flex;
  2160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2161. font-weight:400;
  2162. font-style:normal;
  2163. color:#000000;
  2164. text-align:center;
  2165. }
  2166. #u4684 .text {
  2167. position:absolute;
  2168. align-self:flex-start;
  2169. padding:0px 0px 0px 0px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u4684_text {
  2174. border-width:0px;
  2175. white-space:nowrap;
  2176. text-transform:none;
  2177. }
  2178. #u4685_div {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:19px;
  2184. height:25px;
  2185. background:inherit;
  2186. background-color:rgba(255, 255, 255, 0);
  2187. border:none;
  2188. border-radius:0px;
  2189. -moz-box-shadow:none;
  2190. -webkit-box-shadow:none;
  2191. box-shadow:none;
  2192. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2193. font-weight:500;
  2194. font-style:normal;
  2195. font-size:18px;
  2196. color:#1890FF;
  2197. text-align:center;
  2198. }
  2199. #u4685 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:158px;
  2203. top:233px;
  2204. width:19px;
  2205. height:25px;
  2206. display:flex;
  2207. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2208. font-weight:500;
  2209. font-style:normal;
  2210. font-size:18px;
  2211. color:#1890FF;
  2212. text-align:center;
  2213. }
  2214. #u4685 .text {
  2215. position:absolute;
  2216. align-self:flex-start;
  2217. padding:0px 0px 0px 0px;
  2218. box-sizing:border-box;
  2219. width:100%;
  2220. }
  2221. #u4685_text {
  2222. border-width:0px;
  2223. white-space:nowrap;
  2224. text-transform:none;
  2225. }
  2226. #u4686 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:0px;
  2232. height:0px;
  2233. }
  2234. #u4687_div {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:43px;
  2240. height:20px;
  2241. background:inherit;
  2242. background-color:rgba(255, 255, 255, 0);
  2243. border:none;
  2244. border-radius:0px;
  2245. -moz-box-shadow:none;
  2246. -webkit-box-shadow:none;
  2247. box-shadow:none;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. color:#000000;
  2252. text-align:center;
  2253. }
  2254. #u4687 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:237px;
  2258. top:256px;
  2259. width:43px;
  2260. height:20px;
  2261. display:flex;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. color:#000000;
  2266. text-align:center;
  2267. }
  2268. #u4687 .text {
  2269. position:absolute;
  2270. align-self:flex-start;
  2271. padding:0px 0px 0px 0px;
  2272. box-sizing:border-box;
  2273. width:100%;
  2274. }
  2275. #u4687_text {
  2276. border-width:0px;
  2277. white-space:nowrap;
  2278. text-transform:none;
  2279. }
  2280. #u4688_div {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:12px;
  2286. height:25px;
  2287. background:inherit;
  2288. background-color:rgba(255, 255, 255, 0);
  2289. border:none;
  2290. border-radius:0px;
  2291. -moz-box-shadow:none;
  2292. -webkit-box-shadow:none;
  2293. box-shadow:none;
  2294. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2295. font-weight:500;
  2296. font-style:normal;
  2297. font-size:18px;
  2298. color:#F59A23;
  2299. text-align:center;
  2300. }
  2301. #u4688 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:253px;
  2305. top:233px;
  2306. width:12px;
  2307. height:25px;
  2308. display:flex;
  2309. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2310. font-weight:500;
  2311. font-style:normal;
  2312. font-size:18px;
  2313. color:#F59A23;
  2314. text-align:center;
  2315. }
  2316. #u4688 .text {
  2317. position:absolute;
  2318. align-self:flex-start;
  2319. padding:0px 0px 0px 0px;
  2320. box-sizing:border-box;
  2321. width:100%;
  2322. }
  2323. #u4688_text {
  2324. border-width:0px;
  2325. white-space:nowrap;
  2326. text-transform:none;
  2327. }
  2328. #u4689 {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:0px;
  2334. height:0px;
  2335. }
  2336. #u4690_div {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:29px;
  2342. height:20px;
  2343. background:inherit;
  2344. background-color:rgba(255, 255, 255, 0);
  2345. border:none;
  2346. border-radius:0px;
  2347. -moz-box-shadow:none;
  2348. -webkit-box-shadow:none;
  2349. box-shadow:none;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. color:#000000;
  2354. text-align:center;
  2355. }
  2356. #u4690 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:68px;
  2360. top:306px;
  2361. width:29px;
  2362. height:20px;
  2363. display:flex;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. color:#000000;
  2368. text-align:center;
  2369. }
  2370. #u4690 .text {
  2371. position:absolute;
  2372. align-self:flex-start;
  2373. padding:0px 0px 0px 0px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u4690_text {
  2378. border-width:0px;
  2379. white-space:nowrap;
  2380. text-transform:none;
  2381. }
  2382. #u4691_div {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:12px;
  2388. height:25px;
  2389. background:inherit;
  2390. background-color:rgba(255, 255, 255, 0);
  2391. border:none;
  2392. border-radius:0px;
  2393. -moz-box-shadow:none;
  2394. -webkit-box-shadow:none;
  2395. box-shadow:none;
  2396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2397. font-weight:500;
  2398. font-style:normal;
  2399. font-size:18px;
  2400. color:#D9001B;
  2401. text-align:center;
  2402. }
  2403. #u4691 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:77px;
  2407. top:283px;
  2408. width:12px;
  2409. height:25px;
  2410. display:flex;
  2411. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2412. font-weight:500;
  2413. font-style:normal;
  2414. font-size:18px;
  2415. color:#D9001B;
  2416. text-align:center;
  2417. }
  2418. #u4691 .text {
  2419. position:absolute;
  2420. align-self:flex-start;
  2421. padding:0px 0px 0px 0px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u4691_text {
  2426. border-width:0px;
  2427. white-space:nowrap;
  2428. text-transform:none;
  2429. }
  2430. #u4692 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:0px;
  2436. height:0px;
  2437. }
  2438. #u4693_div {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:29px;
  2444. height:20px;
  2445. background:inherit;
  2446. background-color:rgba(255, 255, 255, 0);
  2447. border:none;
  2448. border-radius:0px;
  2449. -moz-box-shadow:none;
  2450. -webkit-box-shadow:none;
  2451. box-shadow:none;
  2452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. color:#000000;
  2456. text-align:center;
  2457. }
  2458. #u4693 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:158px;
  2462. top:306px;
  2463. width:29px;
  2464. height:20px;
  2465. display:flex;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. color:#000000;
  2470. text-align:center;
  2471. }
  2472. #u4693 .text {
  2473. position:absolute;
  2474. align-self:flex-start;
  2475. padding:0px 0px 0px 0px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u4693_text {
  2480. border-width:0px;
  2481. white-space:nowrap;
  2482. text-transform:none;
  2483. }
  2484. #u4694_div {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:0px;
  2488. top:0px;
  2489. width:12px;
  2490. height:25px;
  2491. background:inherit;
  2492. background-color:rgba(255, 255, 255, 0);
  2493. border:none;
  2494. border-radius:0px;
  2495. -moz-box-shadow:none;
  2496. -webkit-box-shadow:none;
  2497. box-shadow:none;
  2498. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2499. font-weight:500;
  2500. font-style:normal;
  2501. font-size:18px;
  2502. color:#AAAAAA;
  2503. text-align:center;
  2504. }
  2505. #u4694 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:167px;
  2509. top:283px;
  2510. width:12px;
  2511. height:25px;
  2512. display:flex;
  2513. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2514. font-weight:500;
  2515. font-style:normal;
  2516. font-size:18px;
  2517. color:#AAAAAA;
  2518. text-align:center;
  2519. }
  2520. #u4694 .text {
  2521. position:absolute;
  2522. align-self:flex-start;
  2523. padding:0px 0px 0px 0px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u4694_text {
  2528. border-width:0px;
  2529. white-space:nowrap;
  2530. text-transform:none;
  2531. }
  2532. #u4695_div {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:57px;
  2538. height:20px;
  2539. background:inherit;
  2540. background-color:rgba(255, 255, 255, 0);
  2541. border:none;
  2542. border-radius:0px;
  2543. -moz-box-shadow:none;
  2544. -webkit-box-shadow:none;
  2545. box-shadow:none;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. color:#000000;
  2550. }
  2551. #u4695 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:52px;
  2555. top:203px;
  2556. width:57px;
  2557. height:20px;
  2558. display:flex;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. color:#000000;
  2563. }
  2564. #u4695 .text {
  2565. position:absolute;
  2566. align-self:flex-start;
  2567. padding:0px 0px 0px 0px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u4695_text {
  2572. border-width:0px;
  2573. white-space:nowrap;
  2574. text-transform:none;
  2575. }
  2576. #u4696 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:0px;
  2582. height:0px;
  2583. }
  2584. #u4697_div {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:43px;
  2590. height:20px;
  2591. background:inherit;
  2592. background-color:rgba(255, 255, 255, 0);
  2593. border:none;
  2594. border-radius:0px;
  2595. -moz-box-shadow:none;
  2596. -webkit-box-shadow:none;
  2597. box-shadow:none;
  2598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2599. font-weight:400;
  2600. font-style:normal;
  2601. color:#000000;
  2602. text-align:center;
  2603. }
  2604. #u4697 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:328px;
  2608. top:256px;
  2609. width:43px;
  2610. height:20px;
  2611. display:flex;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. color:#000000;
  2616. text-align:center;
  2617. }
  2618. #u4697 .text {
  2619. position:absolute;
  2620. align-self:flex-start;
  2621. padding:0px 0px 0px 0px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u4697_text {
  2626. border-width:0px;
  2627. white-space:nowrap;
  2628. text-transform:none;
  2629. }
  2630. #u4698_div {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:19px;
  2636. height:25px;
  2637. background:inherit;
  2638. background-color:rgba(255, 255, 255, 0);
  2639. border:none;
  2640. border-radius:0px;
  2641. -moz-box-shadow:none;
  2642. -webkit-box-shadow:none;
  2643. box-shadow:none;
  2644. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2645. font-weight:500;
  2646. font-style:normal;
  2647. font-size:18px;
  2648. color:#1890FF;
  2649. text-align:center;
  2650. }
  2651. #u4698 {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:341px;
  2655. top:233px;
  2656. width:19px;
  2657. height:25px;
  2658. display:flex;
  2659. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2660. font-weight:500;
  2661. font-style:normal;
  2662. font-size:18px;
  2663. color:#1890FF;
  2664. text-align:center;
  2665. }
  2666. #u4698 .text {
  2667. position:absolute;
  2668. align-self:flex-start;
  2669. padding:0px 0px 0px 0px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u4698_text {
  2674. border-width:0px;
  2675. white-space:nowrap;
  2676. text-transform:none;
  2677. }
  2678. #u4699 {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:0px;
  2684. height:0px;
  2685. }
  2686. #u4700_div {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:355px;
  2692. height:60px;
  2693. background:inherit;
  2694. background-color:rgba(255, 255, 255, 1);
  2695. border:none;
  2696. border-radius:10px;
  2697. -moz-box-shadow:none;
  2698. -webkit-box-shadow:none;
  2699. box-shadow:none;
  2700. }
  2701. #u4700 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:39px;
  2705. top:118px;
  2706. width:355px;
  2707. height:60px;
  2708. display:flex;
  2709. }
  2710. #u4700 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 2px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u4700_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u4701_div {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:50px;
  2729. height:25px;
  2730. background:inherit;
  2731. background-color:rgba(255, 255, 255, 0);
  2732. border:none;
  2733. border-radius:0px;
  2734. -moz-box-shadow:none;
  2735. -webkit-box-shadow:none;
  2736. box-shadow:none;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-style:normal;
  2739. }
  2740. #u4701 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:64px;
  2744. top:135px;
  2745. width:50px;
  2746. height:25px;
  2747. display:flex;
  2748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2749. font-style:normal;
  2750. }
  2751. #u4701 .text {
  2752. position:absolute;
  2753. align-self:flex-start;
  2754. padding:0px 0px 0px 0px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u4701_text {
  2759. border-width:0px;
  2760. white-space:nowrap;
  2761. text-transform:none;
  2762. }
  2763. #u4702_div {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:68px;
  2769. height:25px;
  2770. background:inherit;
  2771. background-color:rgba(255, 255, 255, 0);
  2772. border:none;
  2773. border-radius:0px;
  2774. -moz-box-shadow:none;
  2775. -webkit-box-shadow:none;
  2776. box-shadow:none;
  2777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2778. font-style:normal;
  2779. }
  2780. #u4702 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:164px;
  2784. top:135px;
  2785. width:68px;
  2786. height:25px;
  2787. display:flex;
  2788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2789. font-style:normal;
  2790. }
  2791. #u4702 .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. #u4702_text {
  2799. border-width:0px;
  2800. white-space:nowrap;
  2801. text-transform:none;
  2802. }
  2803. #u4703_div {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:79px;
  2809. height:25px;
  2810. background:inherit;
  2811. background-color:rgba(255, 255, 255, 0);
  2812. border:none;
  2813. border-radius:0px;
  2814. -moz-box-shadow:none;
  2815. -webkit-box-shadow:none;
  2816. box-shadow:none;
  2817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2818. font-style:normal;
  2819. }
  2820. #u4703 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:287px;
  2824. top:135px;
  2825. width:79px;
  2826. height:25px;
  2827. display:flex;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-style:normal;
  2830. }
  2831. #u4703 .text {
  2832. position:absolute;
  2833. align-self:flex-start;
  2834. padding:0px 0px 0px 0px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u4703_text {
  2839. border-width:0px;
  2840. white-space:nowrap;
  2841. text-transform:none;
  2842. }
  2843. #u4704_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:355px;
  2849. height:139px;
  2850. background:inherit;
  2851. background-color:rgba(255, 255, 255, 1);
  2852. border:none;
  2853. border-radius:4px;
  2854. -moz-box-shadow:none;
  2855. -webkit-box-shadow:none;
  2856. box-shadow:none;
  2857. }
  2858. #u4704 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:42px;
  2862. top:354px;
  2863. width:355px;
  2864. height:139px;
  2865. display:flex;
  2866. }
  2867. #u4704 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 2px 2px 2px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u4704_text {
  2875. border-width:0px;
  2876. word-wrap:break-word;
  2877. text-transform:none;
  2878. visibility:hidden;
  2879. }
  2880. #u4705_div {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:65px;
  2886. height:22px;
  2887. background:inherit;
  2888. background-color:rgba(255, 255, 255, 0);
  2889. border:none;
  2890. border-radius:0px;
  2891. -moz-box-shadow:none;
  2892. -webkit-box-shadow:none;
  2893. box-shadow:none;
  2894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:16px;
  2898. color:#000000;
  2899. }
  2900. #u4705 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:62px;
  2904. top:372px;
  2905. width:65px;
  2906. height:22px;
  2907. display:flex;
  2908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:16px;
  2912. color:#000000;
  2913. }
  2914. #u4705 .text {
  2915. position:absolute;
  2916. align-self:flex-start;
  2917. padding:0px 0px 0px 0px;
  2918. box-sizing:border-box;
  2919. width:100%;
  2920. }
  2921. #u4705_text {
  2922. border-width:0px;
  2923. white-space:nowrap;
  2924. text-transform:none;
  2925. }
  2926. #u4706_div {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:18px;
  2932. height:40px;
  2933. background:inherit;
  2934. background-color:rgba(255, 255, 255, 0);
  2935. border:none;
  2936. border-radius:0px;
  2937. -moz-box-shadow:none;
  2938. -webkit-box-shadow:none;
  2939. box-shadow:none;
  2940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:28px;
  2944. color:#000000;
  2945. }
  2946. #u4706 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:93px;
  2950. top:416px;
  2951. width:18px;
  2952. height:40px;
  2953. display:flex;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:28px;
  2958. color:#000000;
  2959. }
  2960. #u4706 .text {
  2961. position:absolute;
  2962. align-self:flex-start;
  2963. padding:0px 0px 0px 0px;
  2964. box-sizing:border-box;
  2965. width:100%;
  2966. }
  2967. #u4706_text {
  2968. border-width:0px;
  2969. white-space:nowrap;
  2970. text-transform:none;
  2971. }
  2972. #u4707_div {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:49px;
  2978. height:17px;
  2979. background:inherit;
  2980. background-color:rgba(255, 255, 255, 0);
  2981. border:none;
  2982. border-left:0px;
  2983. border-top:0px;
  2984. border-right:0px;
  2985. border-radius:0px;
  2986. border-bottom-right-radius:0px;
  2987. border-bottom-left-radius:0px;
  2988. -moz-box-shadow:none;
  2989. -webkit-box-shadow:none;
  2990. box-shadow:none;
  2991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2992. font-weight:400;
  2993. font-style:normal;
  2994. font-size:12px;
  2995. }
  2996. #u4707 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:78px;
  3000. top:456px;
  3001. width:49px;
  3002. height:17px;
  3003. display:flex;
  3004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3005. font-weight:400;
  3006. font-style:normal;
  3007. font-size:12px;
  3008. }
  3009. #u4707 .text {
  3010. position:absolute;
  3011. align-self:flex-start;
  3012. padding:0px 0px 0px 0px;
  3013. box-sizing:border-box;
  3014. width:100%;
  3015. }
  3016. #u4707_text {
  3017. border-width:0px;
  3018. white-space:nowrap;
  3019. text-transform:none;
  3020. }
  3021. #u4708_img {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:2px;
  3027. height:33px;
  3028. }
  3029. #u4708 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:166px;
  3033. top:428px;
  3034. width:1px;
  3035. height:32px;
  3036. display:flex;
  3037. }
  3038. #u4708 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 2px 2px 2px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u4708_text {
  3046. border-width:0px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. visibility:hidden;
  3050. }
  3051. #u4709_div {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:37px;
  3057. height:17px;
  3058. background:inherit;
  3059. background-color:rgba(255, 255, 255, 0);
  3060. border:none;
  3061. border-left:0px;
  3062. border-top:0px;
  3063. border-right:0px;
  3064. border-radius:0px;
  3065. border-bottom-right-radius:0px;
  3066. border-bottom-left-radius:0px;
  3067. -moz-box-shadow:none;
  3068. -webkit-box-shadow:none;
  3069. box-shadow:none;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:12px;
  3074. }
  3075. #u4709 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:215px;
  3079. top:456px;
  3080. width:37px;
  3081. height:17px;
  3082. display:flex;
  3083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3084. font-weight:400;
  3085. font-style:normal;
  3086. font-size:12px;
  3087. }
  3088. #u4709 .text {
  3089. position:absolute;
  3090. align-self:flex-start;
  3091. padding:0px 0px 0px 0px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u4709_text {
  3096. border-width:0px;
  3097. white-space:nowrap;
  3098. text-transform:none;
  3099. }
  3100. #u4710_div {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:37px;
  3106. height:17px;
  3107. background:inherit;
  3108. background-color:rgba(255, 255, 255, 0);
  3109. border:none;
  3110. border-left:0px;
  3111. border-top:0px;
  3112. border-right:0px;
  3113. border-radius:0px;
  3114. border-bottom-right-radius:0px;
  3115. border-bottom-left-radius:0px;
  3116. -moz-box-shadow:none;
  3117. -webkit-box-shadow:none;
  3118. box-shadow:none;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:12px;
  3123. }
  3124. #u4710 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:309px;
  3128. top:456px;
  3129. width:37px;
  3130. height:17px;
  3131. display:flex;
  3132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3133. font-weight:400;
  3134. font-style:normal;
  3135. font-size:12px;
  3136. }
  3137. #u4710 .text {
  3138. position:absolute;
  3139. align-self:flex-start;
  3140. padding:0px 0px 0px 0px;
  3141. box-sizing:border-box;
  3142. width:100%;
  3143. }
  3144. #u4710_text {
  3145. border-width:0px;
  3146. white-space:nowrap;
  3147. text-transform:none;
  3148. }
  3149. #u4711_div {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:18px;
  3155. height:40px;
  3156. background:inherit;
  3157. background-color:rgba(255, 255, 255, 0);
  3158. border:none;
  3159. border-radius:0px;
  3160. -moz-box-shadow:none;
  3161. -webkit-box-shadow:none;
  3162. box-shadow:none;
  3163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3164. font-weight:400;
  3165. font-style:normal;
  3166. font-size:28px;
  3167. color:#000000;
  3168. }
  3169. #u4711 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:225px;
  3173. top:416px;
  3174. width:18px;
  3175. height:40px;
  3176. display:flex;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:28px;
  3181. color:#000000;
  3182. }
  3183. #u4711 .text {
  3184. position:absolute;
  3185. align-self:flex-start;
  3186. padding:0px 0px 0px 0px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u4711_text {
  3191. border-width:0px;
  3192. white-space:nowrap;
  3193. text-transform:none;
  3194. }
  3195. #u4712_div {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:46px;
  3201. height:40px;
  3202. background:inherit;
  3203. background-color:rgba(255, 255, 255, 0);
  3204. border:none;
  3205. border-radius:0px;
  3206. -moz-box-shadow:none;
  3207. -webkit-box-shadow:none;
  3208. box-shadow:none;
  3209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3210. font-weight:400;
  3211. font-style:normal;
  3212. font-size:28px;
  3213. color:#000000;
  3214. }
  3215. #u4712 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:304px;
  3219. top:416px;
  3220. width:46px;
  3221. height:40px;
  3222. display:flex;
  3223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3224. font-weight:400;
  3225. font-style:normal;
  3226. font-size:28px;
  3227. color:#000000;
  3228. }
  3229. #u4712 .text {
  3230. position:absolute;
  3231. align-self:flex-start;
  3232. padding:0px 0px 0px 0px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u4712_text {
  3237. border-width:0px;
  3238. white-space:nowrap;
  3239. text-transform:none;
  3240. }