styles.css 61 KB

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