styles.css 58 KB

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