index.css 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343
  1. /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
  2. /* stylelint-disable no-duplicate-selectors */
  3. .ant-pagination {
  4. box-sizing: border-box;
  5. margin: 0;
  6. padding: 0;
  7. color: rgba(0, 0, 0, 0.85);
  8. font-size: 14px;
  9. font-variant: tabular-nums;
  10. line-height: 1.5715;
  11. list-style: none;
  12. font-feature-settings: 'tnum';
  13. }
  14. .ant-pagination ul,
  15. .ant-pagination ol {
  16. margin: 0;
  17. padding: 0;
  18. list-style: none;
  19. }
  20. .ant-pagination::after {
  21. display: block;
  22. clear: both;
  23. height: 0;
  24. overflow: hidden;
  25. visibility: hidden;
  26. content: ' ';
  27. }
  28. .ant-pagination-total-text {
  29. display: inline-block;
  30. height: 32px;
  31. margin-right: 8px;
  32. line-height: 30px;
  33. vertical-align: middle;
  34. }
  35. .ant-pagination-item {
  36. display: inline-block;
  37. min-width: 32px;
  38. height: 32px;
  39. margin-right: 8px;
  40. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  41. line-height: 30px;
  42. text-align: center;
  43. vertical-align: middle;
  44. list-style: none;
  45. background-color: #fff;
  46. border: 1px solid #d9d9d9;
  47. border-radius: 2px;
  48. outline: 0;
  49. cursor: pointer;
  50. user-select: none;
  51. }
  52. .ant-pagination-item a {
  53. display: block;
  54. padding: 0 6px;
  55. color: rgba(0, 0, 0, 0.85);
  56. transition: none;
  57. }
  58. .ant-pagination-item a:hover {
  59. text-decoration: none;
  60. }
  61. .ant-pagination-item:hover {
  62. border-color: #1890ff;
  63. transition: all 0.3s;
  64. }
  65. .ant-pagination-item:hover a {
  66. color: #1890ff;
  67. }
  68. .ant-pagination-item:focus-visible {
  69. border-color: #1890ff;
  70. transition: all 0.3s;
  71. }
  72. .ant-pagination-item:focus-visible a {
  73. color: #1890ff;
  74. }
  75. .ant-pagination-item-active {
  76. font-weight: 500;
  77. background: #fff;
  78. border-color: #1890ff;
  79. }
  80. .ant-pagination-item-active a {
  81. color: #1890ff;
  82. }
  83. .ant-pagination-item-active:hover {
  84. border-color: #40a9ff;
  85. }
  86. .ant-pagination-item-active:focus-visible {
  87. border-color: #40a9ff;
  88. }
  89. .ant-pagination-item-active:hover a {
  90. color: #40a9ff;
  91. }
  92. .ant-pagination-item-active:focus-visible a {
  93. color: #40a9ff;
  94. }
  95. .ant-pagination-jump-prev,
  96. .ant-pagination-jump-next {
  97. outline: 0;
  98. }
  99. .ant-pagination-jump-prev .ant-pagination-item-container,
  100. .ant-pagination-jump-next .ant-pagination-item-container {
  101. position: relative;
  102. }
  103. .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon,
  104. .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon {
  105. color: #1890ff;
  106. font-size: 12px;
  107. letter-spacing: -1px;
  108. opacity: 0;
  109. transition: all 0.2s;
  110. }
  111. .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg,
  112. .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg {
  113. top: 0;
  114. right: 0;
  115. bottom: 0;
  116. left: 0;
  117. margin: auto;
  118. }
  119. .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis,
  120. .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis {
  121. position: absolute;
  122. top: 0;
  123. right: 0;
  124. bottom: 0;
  125. left: 0;
  126. display: block;
  127. margin: auto;
  128. color: rgba(0, 0, 0, 0.25);
  129. font-family: Arial, Helvetica, sans-serif;
  130. letter-spacing: 2px;
  131. text-align: center;
  132. text-indent: 0.13em;
  133. opacity: 1;
  134. transition: all 0.2s;
  135. }
  136. .ant-pagination-jump-prev:hover .ant-pagination-item-link-icon,
  137. .ant-pagination-jump-next:hover .ant-pagination-item-link-icon {
  138. opacity: 1;
  139. }
  140. .ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis,
  141. .ant-pagination-jump-next:hover .ant-pagination-item-ellipsis {
  142. opacity: 0;
  143. }
  144. .ant-pagination-jump-prev:focus-visible .ant-pagination-item-link-icon,
  145. .ant-pagination-jump-next:focus-visible .ant-pagination-item-link-icon {
  146. opacity: 1;
  147. }
  148. .ant-pagination-jump-prev:focus-visible .ant-pagination-item-ellipsis,
  149. .ant-pagination-jump-next:focus-visible .ant-pagination-item-ellipsis {
  150. opacity: 0;
  151. }
  152. .ant-pagination-prev,
  153. .ant-pagination-jump-prev,
  154. .ant-pagination-jump-next {
  155. margin-right: 8px;
  156. }
  157. .ant-pagination-prev,
  158. .ant-pagination-next,
  159. .ant-pagination-jump-prev,
  160. .ant-pagination-jump-next {
  161. display: inline-block;
  162. min-width: 32px;
  163. height: 32px;
  164. color: rgba(0, 0, 0, 0.85);
  165. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  166. line-height: 32px;
  167. text-align: center;
  168. vertical-align: middle;
  169. list-style: none;
  170. border-radius: 2px;
  171. cursor: pointer;
  172. transition: all 0.3s;
  173. }
  174. .ant-pagination-prev,
  175. .ant-pagination-next {
  176. font-family: Arial, Helvetica, sans-serif;
  177. outline: 0;
  178. }
  179. .ant-pagination-prev button,
  180. .ant-pagination-next button {
  181. color: rgba(0, 0, 0, 0.85);
  182. cursor: pointer;
  183. user-select: none;
  184. }
  185. .ant-pagination-prev:hover button,
  186. .ant-pagination-next:hover button {
  187. border-color: #40a9ff;
  188. }
  189. .ant-pagination-prev .ant-pagination-item-link,
  190. .ant-pagination-next .ant-pagination-item-link {
  191. display: block;
  192. width: 100%;
  193. height: 100%;
  194. padding: 0;
  195. font-size: 12px;
  196. text-align: center;
  197. background-color: #fff;
  198. border: 1px solid #d9d9d9;
  199. border-radius: 2px;
  200. outline: none;
  201. transition: all 0.3s;
  202. }
  203. .ant-pagination-prev:focus-visible .ant-pagination-item-link,
  204. .ant-pagination-next:focus-visible .ant-pagination-item-link {
  205. color: #1890ff;
  206. border-color: #1890ff;
  207. }
  208. .ant-pagination-prev:hover .ant-pagination-item-link,
  209. .ant-pagination-next:hover .ant-pagination-item-link {
  210. color: #1890ff;
  211. border-color: #1890ff;
  212. }
  213. .ant-pagination-disabled,
  214. .ant-pagination-disabled:hover {
  215. cursor: not-allowed;
  216. }
  217. .ant-pagination-disabled .ant-pagination-item-link,
  218. .ant-pagination-disabled:hover .ant-pagination-item-link {
  219. color: rgba(0, 0, 0, 0.25);
  220. border-color: #d9d9d9;
  221. cursor: not-allowed;
  222. }
  223. .ant-pagination-disabled:focus-visible {
  224. cursor: not-allowed;
  225. }
  226. .ant-pagination-disabled:focus-visible .ant-pagination-item-link {
  227. color: rgba(0, 0, 0, 0.25);
  228. border-color: #d9d9d9;
  229. cursor: not-allowed;
  230. }
  231. .ant-pagination-slash {
  232. margin: 0 10px 0 5px;
  233. }
  234. .ant-pagination-options {
  235. display: inline-block;
  236. margin-left: 16px;
  237. vertical-align: middle;
  238. }
  239. @media all and (-ms-high-contrast: none) {
  240. .ant-pagination-options *::-ms-backdrop,
  241. .ant-pagination-options {
  242. vertical-align: top;
  243. }
  244. }
  245. .ant-pagination-options-size-changer.ant-select {
  246. display: inline-block;
  247. width: auto;
  248. }
  249. .ant-pagination-options-quick-jumper {
  250. display: inline-block;
  251. height: 32px;
  252. margin-left: 8px;
  253. line-height: 32px;
  254. vertical-align: top;
  255. }
  256. .ant-pagination-options-quick-jumper input {
  257. position: relative;
  258. display: inline-block;
  259. width: 100%;
  260. min-width: 0;
  261. padding: 4px 11px;
  262. color: rgba(0, 0, 0, 0.85);
  263. font-size: 14px;
  264. line-height: 1.5715;
  265. background-color: #fff;
  266. background-image: none;
  267. border: 1px solid #d9d9d9;
  268. border-radius: 2px;
  269. transition: all 0.3s;
  270. width: 50px;
  271. height: 32px;
  272. margin: 0 8px;
  273. }
  274. .ant-pagination-options-quick-jumper input::placeholder {
  275. color: #bfbfbf;
  276. user-select: none;
  277. }
  278. .ant-pagination-options-quick-jumper input:placeholder-shown {
  279. text-overflow: ellipsis;
  280. }
  281. .ant-pagination-options-quick-jumper input:hover {
  282. border-color: #40a9ff;
  283. border-right-width: 1px;
  284. }
  285. .ant-pagination-options-quick-jumper input:focus,
  286. .ant-pagination-options-quick-jumper input-focused {
  287. border-color: #40a9ff;
  288. box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
  289. border-right-width: 1px;
  290. outline: 0;
  291. }
  292. .ant-pagination-options-quick-jumper input-disabled {
  293. color: rgba(0, 0, 0, 0.25);
  294. background-color: #f5f5f5;
  295. border-color: #d9d9d9;
  296. box-shadow: none;
  297. cursor: not-allowed;
  298. opacity: 1;
  299. }
  300. .ant-pagination-options-quick-jumper input-disabled:hover {
  301. border-color: #d9d9d9;
  302. border-right-width: 1px;
  303. }
  304. .ant-pagination-options-quick-jumper input[disabled] {
  305. color: rgba(0, 0, 0, 0.25);
  306. background-color: #f5f5f5;
  307. border-color: #d9d9d9;
  308. box-shadow: none;
  309. cursor: not-allowed;
  310. opacity: 1;
  311. }
  312. .ant-pagination-options-quick-jumper input[disabled]:hover {
  313. border-color: #d9d9d9;
  314. border-right-width: 1px;
  315. }
  316. .ant-pagination-options-quick-jumper input-borderless,
  317. .ant-pagination-options-quick-jumper input-borderless:hover,
  318. .ant-pagination-options-quick-jumper input-borderless:focus,
  319. .ant-pagination-options-quick-jumper input-borderless-focused,
  320. .ant-pagination-options-quick-jumper input-borderless-disabled,
  321. .ant-pagination-options-quick-jumper input-borderless[disabled] {
  322. background-color: transparent;
  323. border: none;
  324. box-shadow: none;
  325. }
  326. textarea.ant-pagination-options-quick-jumper input {
  327. max-width: 100%;
  328. height: auto;
  329. min-height: 32px;
  330. line-height: 1.5715;
  331. vertical-align: bottom;
  332. transition: all 0.3s, height 0s;
  333. }
  334. .ant-pagination-options-quick-jumper input-lg {
  335. padding: 6.5px 11px;
  336. font-size: 16px;
  337. }
  338. .ant-pagination-options-quick-jumper input-sm {
  339. padding: 0px 7px;
  340. }
  341. .ant-pagination-simple .ant-pagination-prev,
  342. .ant-pagination-simple .ant-pagination-next {
  343. height: 24px;
  344. line-height: 24px;
  345. vertical-align: top;
  346. }
  347. .ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link,
  348. .ant-pagination-simple .ant-pagination-next .ant-pagination-item-link {
  349. height: 24px;
  350. background-color: transparent;
  351. border: 0;
  352. }
  353. .ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link::after,
  354. .ant-pagination-simple .ant-pagination-next .ant-pagination-item-link::after {
  355. height: 24px;
  356. line-height: 24px;
  357. }
  358. .ant-pagination-simple .ant-pagination-simple-pager {
  359. display: inline-block;
  360. height: 24px;
  361. margin-right: 8px;
  362. }
  363. .ant-pagination-simple .ant-pagination-simple-pager input {
  364. box-sizing: border-box;
  365. height: 100%;
  366. margin-right: 8px;
  367. padding: 0 6px;
  368. text-align: center;
  369. background-color: #fff;
  370. border: 1px solid #d9d9d9;
  371. border-radius: 2px;
  372. outline: none;
  373. transition: border-color 0.3s;
  374. }
  375. .ant-pagination-simple .ant-pagination-simple-pager input:hover {
  376. border-color: #1890ff;
  377. }
  378. .ant-pagination-simple .ant-pagination-simple-pager input:focus {
  379. border-color: #40a9ff;
  380. box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
  381. }
  382. .ant-pagination-simple .ant-pagination-simple-pager input[disabled] {
  383. color: rgba(0, 0, 0, 0.25);
  384. background: #f5f5f5;
  385. border-color: #d9d9d9;
  386. cursor: not-allowed;
  387. }
  388. .ant-pagination.ant-pagination-mini .ant-pagination-total-text,
  389. .ant-pagination.ant-pagination-mini .ant-pagination-simple-pager {
  390. height: 24px;
  391. line-height: 24px;
  392. }
  393. .ant-pagination.ant-pagination-mini .ant-pagination-item {
  394. min-width: 24px;
  395. height: 24px;
  396. margin: 0;
  397. line-height: 22px;
  398. }
  399. .ant-pagination.ant-pagination-mini .ant-pagination-item:not(.ant-pagination-item-active) {
  400. background: transparent;
  401. border-color: transparent;
  402. }
  403. .ant-pagination.ant-pagination-mini .ant-pagination-prev,
  404. .ant-pagination.ant-pagination-mini .ant-pagination-next {
  405. min-width: 24px;
  406. height: 24px;
  407. margin: 0;
  408. line-height: 24px;
  409. }
  410. .ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link,
  411. .ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link {
  412. background: transparent;
  413. border-color: transparent;
  414. }
  415. .ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link::after,
  416. .ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link::after {
  417. height: 24px;
  418. line-height: 24px;
  419. }
  420. .ant-pagination.ant-pagination-mini .ant-pagination-jump-prev,
  421. .ant-pagination.ant-pagination-mini .ant-pagination-jump-next {
  422. height: 24px;
  423. margin-right: 0;
  424. line-height: 24px;
  425. }
  426. .ant-pagination.ant-pagination-mini .ant-pagination-options {
  427. margin-left: 2px;
  428. }
  429. .ant-pagination.ant-pagination-mini .ant-pagination-options-size-changer {
  430. top: 0px;
  431. }
  432. .ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper {
  433. height: 24px;
  434. line-height: 24px;
  435. }
  436. .ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper input {
  437. padding: 0px 7px;
  438. width: 44px;
  439. height: 24px;
  440. }
  441. .ant-pagination.ant-pagination-disabled {
  442. cursor: not-allowed;
  443. }
  444. .ant-pagination.ant-pagination-disabled .ant-pagination-item {
  445. background: #f5f5f5;
  446. border-color: #d9d9d9;
  447. cursor: not-allowed;
  448. }
  449. .ant-pagination.ant-pagination-disabled .ant-pagination-item a {
  450. color: rgba(0, 0, 0, 0.25);
  451. background: transparent;
  452. border: none;
  453. cursor: not-allowed;
  454. }
  455. .ant-pagination.ant-pagination-disabled .ant-pagination-item-active {
  456. background: #e6e6e6;
  457. }
  458. .ant-pagination.ant-pagination-disabled .ant-pagination-item-active a {
  459. color: rgba(0, 0, 0, 0.25);
  460. }
  461. .ant-pagination.ant-pagination-disabled .ant-pagination-item-link {
  462. color: rgba(0, 0, 0, 0.25);
  463. background: #f5f5f5;
  464. border-color: #d9d9d9;
  465. cursor: not-allowed;
  466. }
  467. .ant-pagination-simple.ant-pagination.ant-pagination-disabled .ant-pagination-item-link {
  468. background: transparent;
  469. }
  470. .ant-pagination.ant-pagination-disabled .ant-pagination-item-link-icon {
  471. opacity: 0;
  472. }
  473. .ant-pagination.ant-pagination-disabled .ant-pagination-item-ellipsis {
  474. opacity: 1;
  475. }
  476. .ant-pagination.ant-pagination-disabled .ant-pagination-simple-pager {
  477. color: rgba(0, 0, 0, 0.25);
  478. }
  479. @media only screen and (max-width: 992px) {
  480. .ant-pagination-item-after-jump-prev,
  481. .ant-pagination-item-before-jump-next {
  482. display: none;
  483. }
  484. }
  485. @media only screen and (max-width: 576px) {
  486. .ant-pagination-options {
  487. display: none;
  488. }
  489. }
  490. .ant-pagination-rtl .ant-pagination-total-text {
  491. margin-right: 0;
  492. margin-left: 8px;
  493. }
  494. .ant-pagination-rtl .ant-pagination-item,
  495. .ant-pagination-rtl .ant-pagination-prev,
  496. .ant-pagination-rtl .ant-pagination-jump-prev,
  497. .ant-pagination-rtl .ant-pagination-jump-next {
  498. margin-right: 0;
  499. margin-left: 8px;
  500. }
  501. .ant-pagination-rtl .ant-pagination-slash {
  502. margin: 0 5px 0 10px;
  503. }
  504. .ant-pagination-rtl .ant-pagination-options {
  505. margin-right: 16px;
  506. margin-left: 0;
  507. }
  508. .ant-pagination-rtl .ant-pagination-options .ant-pagination-options-size-changer.ant-select {
  509. margin-right: 0;
  510. margin-left: 8px;
  511. }
  512. .ant-pagination-rtl .ant-pagination-options .ant-pagination-options-quick-jumper {
  513. margin-left: 0;
  514. }
  515. .ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager {
  516. margin-right: 0;
  517. margin-left: 8px;
  518. }
  519. .ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager input {
  520. margin-right: 0;
  521. margin-left: 8px;
  522. }
  523. .ant-pagination-rtl.ant-pagination.mini .ant-pagination-options {
  524. margin-right: 2px;
  525. margin-left: 0;
  526. }
  527. .ant-select-single .ant-select-selector {
  528. display: flex;
  529. }
  530. .ant-select-single .ant-select-selector .ant-select-selection-search {
  531. position: absolute;
  532. top: 0;
  533. right: 11px;
  534. bottom: 0;
  535. left: 11px;
  536. }
  537. .ant-select-single .ant-select-selector .ant-select-selection-search-input {
  538. width: 100%;
  539. }
  540. .ant-select-single .ant-select-selector .ant-select-selection-item,
  541. .ant-select-single .ant-select-selector .ant-select-selection-placeholder {
  542. padding: 0;
  543. line-height: 30px;
  544. transition: all 0.3s, visibility 0s;
  545. }
  546. .ant-select-single .ant-select-selector .ant-select-selection-item {
  547. position: relative;
  548. user-select: none;
  549. }
  550. .ant-select-single .ant-select-selector .ant-select-selection-placeholder {
  551. transition: none;
  552. pointer-events: none;
  553. }
  554. .ant-select-single .ant-select-selector::after,
  555. .ant-select-single .ant-select-selector .ant-select-selection-item::after,
  556. .ant-select-single .ant-select-selector .ant-select-selection-placeholder::after {
  557. display: inline-block;
  558. width: 0;
  559. visibility: hidden;
  560. content: '\a0';
  561. }
  562. .ant-select-single.ant-select-show-arrow .ant-select-selection-search {
  563. right: 25px;
  564. }
  565. .ant-select-single.ant-select-show-arrow .ant-select-selection-item,
  566. .ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder {
  567. padding-right: 18px;
  568. }
  569. .ant-select-single.ant-select-open .ant-select-selection-item {
  570. color: #bfbfbf;
  571. }
  572. .ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
  573. width: 100%;
  574. height: 32px;
  575. padding: 0 11px;
  576. }
  577. .ant-select-single:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input {
  578. height: 30px;
  579. }
  580. .ant-select-single:not(.ant-select-customize-input) .ant-select-selector::after {
  581. line-height: 30px;
  582. }
  583. .ant-select-single.ant-select-customize-input .ant-select-selector::after {
  584. display: none;
  585. }
  586. .ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-search {
  587. position: static;
  588. width: 100%;
  589. }
  590. .ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder {
  591. position: absolute;
  592. right: 0;
  593. left: 0;
  594. padding: 0 11px;
  595. }
  596. .ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder::after {
  597. display: none;
  598. }
  599. .ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector {
  600. height: 40px;
  601. }
  602. .ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector::after,
  603. .ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,
  604. .ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder {
  605. line-height: 38px;
  606. }
  607. .ant-select-single.ant-select-lg:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input {
  608. height: 38px;
  609. }
  610. .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector {
  611. height: 24px;
  612. }
  613. .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector::after,
  614. .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,
  615. .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder {
  616. line-height: 22px;
  617. }
  618. .ant-select-single.ant-select-sm:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input {
  619. height: 22px;
  620. }
  621. .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selection-search {
  622. right: 7px;
  623. left: 7px;
  624. }
  625. .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector {
  626. padding: 0 7px;
  627. }
  628. .ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search {
  629. right: 28px;
  630. }
  631. .ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,
  632. .ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder {
  633. padding-right: 21px;
  634. }
  635. .ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector {
  636. padding: 0 11px;
  637. }
  638. /**
  639. * Do not merge `height` & `line-height` under style with `selection` & `search`,
  640. * since chrome may update to redesign with its align logic.
  641. */
  642. .ant-select-selection-overflow {
  643. position: relative;
  644. display: flex;
  645. flex: auto;
  646. flex-wrap: wrap;
  647. max-width: 100%;
  648. }
  649. .ant-select-selection-overflow-item {
  650. flex: none;
  651. align-self: center;
  652. max-width: 100%;
  653. }
  654. .ant-select-multiple .ant-select-selector {
  655. display: flex;
  656. flex-wrap: wrap;
  657. align-items: center;
  658. padding: 1px 4px;
  659. }
  660. .ant-select-show-search.ant-select-multiple .ant-select-selector {
  661. cursor: text;
  662. }
  663. .ant-select-disabled.ant-select-multiple .ant-select-selector {
  664. background: #f5f5f5;
  665. cursor: not-allowed;
  666. }
  667. .ant-select-multiple .ant-select-selector::after {
  668. display: inline-block;
  669. width: 0;
  670. margin: 2px 0;
  671. line-height: 24px;
  672. visibility: hidden;
  673. content: '\a0';
  674. }
  675. .ant-select-multiple.ant-select-show-arrow .ant-select-selector,
  676. .ant-select-multiple.ant-select-allow-clear .ant-select-selector {
  677. padding-right: 24px;
  678. }
  679. .ant-select-multiple .ant-select-selection-item {
  680. position: relative;
  681. display: flex;
  682. flex: none;
  683. box-sizing: border-box;
  684. max-width: 100%;
  685. height: 24px;
  686. margin-top: 2px;
  687. margin-bottom: 2px;
  688. line-height: 22px;
  689. background: #f5f5f5;
  690. border: 1px solid #f0f0f0;
  691. border-radius: 2px;
  692. cursor: default;
  693. transition: font-size 0.3s, line-height 0.3s, height 0.3s;
  694. user-select: none;
  695. margin-inline-end: 4px;
  696. padding-inline-start: 8px;
  697. padding-inline-end: 4px;
  698. }
  699. .ant-select-disabled.ant-select-multiple .ant-select-selection-item {
  700. color: #bfbfbf;
  701. border-color: #d9d9d9;
  702. cursor: not-allowed;
  703. }
  704. .ant-select-multiple .ant-select-selection-item-content {
  705. display: inline-block;
  706. margin-right: 4px;
  707. overflow: hidden;
  708. white-space: pre;
  709. text-overflow: ellipsis;
  710. }
  711. .ant-select-multiple .ant-select-selection-item-remove {
  712. color: inherit;
  713. font-style: normal;
  714. line-height: 0;
  715. text-align: center;
  716. text-transform: none;
  717. vertical-align: -0.125em;
  718. text-rendering: optimizelegibility;
  719. -webkit-font-smoothing: antialiased;
  720. -moz-osx-font-smoothing: grayscale;
  721. display: inline-flex;
  722. align-items: center;
  723. color: rgba(0, 0, 0, 0.45);
  724. font-weight: bold;
  725. font-size: 10px;
  726. line-height: inherit;
  727. cursor: pointer;
  728. }
  729. .ant-select-multiple .ant-select-selection-item-remove > * {
  730. line-height: 1;
  731. }
  732. .ant-select-multiple .ant-select-selection-item-remove svg {
  733. display: inline-block;
  734. }
  735. .ant-select-multiple .ant-select-selection-item-remove::before {
  736. display: none;
  737. }
  738. .ant-select-multiple .ant-select-selection-item-remove .ant-select-multiple .ant-select-selection-item-remove-icon {
  739. display: block;
  740. }
  741. .ant-select-multiple .ant-select-selection-item-remove > .anticon {
  742. vertical-align: middle;
  743. }
  744. .ant-select-multiple .ant-select-selection-item-remove:hover {
  745. color: rgba(0, 0, 0, 0.75);
  746. }
  747. .ant-select-multiple .ant-select-selection-overflow-item + .ant-select-selection-overflow-item .ant-select-selection-search {
  748. margin-inline-start: 0;
  749. }
  750. .ant-select-multiple .ant-select-selection-search {
  751. position: relative;
  752. max-width: 100%;
  753. margin-inline-start: 7px;
  754. }
  755. .ant-select-multiple .ant-select-selection-search-input,
  756. .ant-select-multiple .ant-select-selection-search-mirror {
  757. height: 24px;
  758. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  759. line-height: 24px;
  760. transition: all 0.3s;
  761. }
  762. .ant-select-multiple .ant-select-selection-search-input {
  763. width: 100%;
  764. min-width: 4.1px;
  765. }
  766. .ant-select-multiple .ant-select-selection-search-mirror {
  767. position: absolute;
  768. top: 0;
  769. left: 0;
  770. z-index: 999;
  771. white-space: pre;
  772. visibility: hidden;
  773. }
  774. .ant-select-multiple .ant-select-selection-placeholder {
  775. position: absolute;
  776. top: 50%;
  777. right: 11px;
  778. left: 11px;
  779. transform: translateY(-50%);
  780. transition: all 0.3s;
  781. }
  782. .ant-select-multiple.ant-select-lg .ant-select-selector::after {
  783. line-height: 32px;
  784. }
  785. .ant-select-multiple.ant-select-lg .ant-select-selection-item {
  786. height: 32px;
  787. line-height: 30px;
  788. }
  789. .ant-select-multiple.ant-select-lg .ant-select-selection-search {
  790. height: 32px;
  791. line-height: 32px;
  792. }
  793. .ant-select-multiple.ant-select-lg .ant-select-selection-search-input,
  794. .ant-select-multiple.ant-select-lg .ant-select-selection-search-mirror {
  795. height: 32px;
  796. line-height: 30px;
  797. }
  798. .ant-select-multiple.ant-select-sm .ant-select-selector::after {
  799. line-height: 16px;
  800. }
  801. .ant-select-multiple.ant-select-sm .ant-select-selection-item {
  802. height: 16px;
  803. line-height: 14px;
  804. }
  805. .ant-select-multiple.ant-select-sm .ant-select-selection-search {
  806. height: 16px;
  807. line-height: 16px;
  808. }
  809. .ant-select-multiple.ant-select-sm .ant-select-selection-search-input,
  810. .ant-select-multiple.ant-select-sm .ant-select-selection-search-mirror {
  811. height: 16px;
  812. line-height: 14px;
  813. }
  814. .ant-select-multiple.ant-select-sm .ant-select-selection-placeholder {
  815. left: 7px;
  816. }
  817. .ant-select-multiple.ant-select-sm .ant-select-selection-search {
  818. margin-inline-start: 3px;
  819. }
  820. .ant-select-disabled .ant-select-selection-item-remove {
  821. display: none;
  822. }
  823. .ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector {
  824. background-color: #fff;
  825. border-color: #ff4d4f !important;
  826. }
  827. .ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector,
  828. .ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector {
  829. border-color: #ff7875;
  830. box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
  831. border-right-width: 1px;
  832. outline: 0;
  833. }
  834. .ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector {
  835. background-color: #fff;
  836. border-color: #faad14 !important;
  837. }
  838. .ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector,
  839. .ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector {
  840. border-color: #ffc53d;
  841. box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
  842. border-right-width: 1px;
  843. outline: 0;
  844. }
  845. .ant-select-status-error.ant-select-has-feedback .ant-select-clear,
  846. .ant-select-status-warning.ant-select-has-feedback .ant-select-clear,
  847. .ant-select-status-success.ant-select-has-feedback .ant-select-clear,
  848. .ant-select-status-validating.ant-select-has-feedback .ant-select-clear {
  849. right: 32px;
  850. }
  851. .ant-select-status-error.ant-select-has-feedback .ant-select-selection-selected-value,
  852. .ant-select-status-warning.ant-select-has-feedback .ant-select-selection-selected-value,
  853. .ant-select-status-success.ant-select-has-feedback .ant-select-selection-selected-value,
  854. .ant-select-status-validating.ant-select-has-feedback .ant-select-selection-selected-value {
  855. padding-right: 42px;
  856. }
  857. /* Reset search input style */
  858. .ant-select {
  859. box-sizing: border-box;
  860. margin: 0;
  861. padding: 0;
  862. color: rgba(0, 0, 0, 0.85);
  863. font-size: 14px;
  864. font-variant: tabular-nums;
  865. line-height: 1.5715;
  866. list-style: none;
  867. font-feature-settings: 'tnum';
  868. position: relative;
  869. display: inline-block;
  870. cursor: pointer;
  871. }
  872. .ant-select:not(.ant-select-customize-input) .ant-select-selector {
  873. position: relative;
  874. background-color: #fff;
  875. border: 1px solid #d9d9d9;
  876. border-radius: 2px;
  877. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  878. }
  879. .ant-select:not(.ant-select-customize-input) .ant-select-selector input {
  880. cursor: pointer;
  881. }
  882. .ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector {
  883. cursor: text;
  884. }
  885. .ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector input {
  886. cursor: auto;
  887. }
  888. .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
  889. border-color: #40a9ff;
  890. box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
  891. border-right-width: 1px;
  892. outline: 0;
  893. }
  894. .ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector {
  895. color: rgba(0, 0, 0, 0.25);
  896. background: #f5f5f5;
  897. cursor: not-allowed;
  898. }
  899. .ant-select-multiple.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector {
  900. background: #f5f5f5;
  901. }
  902. .ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector input {
  903. cursor: not-allowed;
  904. }
  905. .ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input {
  906. margin: 0;
  907. padding: 0;
  908. background: transparent;
  909. border: none;
  910. outline: none;
  911. appearance: none;
  912. }
  913. .ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input::-webkit-search-cancel-button {
  914. display: none;
  915. /* stylelint-disable-next-line property-no-vendor-prefix */
  916. -webkit-appearance: none;
  917. }
  918. .ant-select:not(.ant-select-disabled):hover .ant-select-selector {
  919. border-color: #40a9ff;
  920. border-right-width: 1px;
  921. }
  922. .ant-select-selection-item {
  923. flex: 1;
  924. overflow: hidden;
  925. font-weight: normal;
  926. white-space: nowrap;
  927. text-overflow: ellipsis;
  928. }
  929. @media all and (-ms-high-contrast: none) {
  930. .ant-select-selection-item *::-ms-backdrop,
  931. .ant-select-selection-item {
  932. flex: auto;
  933. }
  934. }
  935. .ant-select-selection-placeholder {
  936. flex: 1;
  937. overflow: hidden;
  938. color: #bfbfbf;
  939. white-space: nowrap;
  940. text-overflow: ellipsis;
  941. pointer-events: none;
  942. }
  943. @media all and (-ms-high-contrast: none) {
  944. .ant-select-selection-placeholder *::-ms-backdrop,
  945. .ant-select-selection-placeholder {
  946. flex: auto;
  947. }
  948. }
  949. .ant-select-arrow {
  950. display: inline-flex;
  951. color: inherit;
  952. font-style: normal;
  953. line-height: 0;
  954. text-transform: none;
  955. vertical-align: -0.125em;
  956. text-rendering: optimizelegibility;
  957. -webkit-font-smoothing: antialiased;
  958. -moz-osx-font-smoothing: grayscale;
  959. position: absolute;
  960. top: 50%;
  961. right: 11px;
  962. display: flex;
  963. align-items: center;
  964. height: 12px;
  965. margin-top: -6px;
  966. color: rgba(0, 0, 0, 0.25);
  967. font-size: 12px;
  968. line-height: 1;
  969. text-align: center;
  970. pointer-events: none;
  971. }
  972. .ant-select-arrow > * {
  973. line-height: 1;
  974. }
  975. .ant-select-arrow svg {
  976. display: inline-block;
  977. }
  978. .ant-select-arrow::before {
  979. display: none;
  980. }
  981. .ant-select-arrow .ant-select-arrow-icon {
  982. display: block;
  983. }
  984. .ant-select-arrow .anticon {
  985. vertical-align: top;
  986. transition: transform 0.3s;
  987. }
  988. .ant-select-arrow .anticon > svg {
  989. vertical-align: top;
  990. }
  991. .ant-select-arrow .anticon:not(.ant-select-suffix) {
  992. pointer-events: auto;
  993. }
  994. .ant-select-disabled .ant-select-arrow {
  995. cursor: not-allowed;
  996. }
  997. .ant-select-arrow > *:not(:last-child) {
  998. margin-inline-end: 8px;
  999. }
  1000. .ant-select-clear {
  1001. position: absolute;
  1002. top: 50%;
  1003. right: 11px;
  1004. z-index: 1;
  1005. display: inline-block;
  1006. width: 12px;
  1007. height: 12px;
  1008. margin-top: -6px;
  1009. color: rgba(0, 0, 0, 0.25);
  1010. font-size: 12px;
  1011. font-style: normal;
  1012. line-height: 1;
  1013. text-align: center;
  1014. text-transform: none;
  1015. background: #fff;
  1016. cursor: pointer;
  1017. opacity: 0;
  1018. transition: color 0.3s ease, opacity 0.15s ease;
  1019. text-rendering: auto;
  1020. }
  1021. .ant-select-clear::before {
  1022. display: block;
  1023. }
  1024. .ant-select-clear:hover {
  1025. color: rgba(0, 0, 0, 0.45);
  1026. }
  1027. .ant-select:hover .ant-select-clear {
  1028. opacity: 1;
  1029. }
  1030. .ant-select-dropdown {
  1031. margin: 0;
  1032. padding: 0;
  1033. color: rgba(0, 0, 0, 0.85);
  1034. font-variant: tabular-nums;
  1035. line-height: 1.5715;
  1036. list-style: none;
  1037. font-feature-settings: 'tnum';
  1038. position: absolute;
  1039. top: -9999px;
  1040. left: -9999px;
  1041. z-index: 1050;
  1042. box-sizing: border-box;
  1043. padding: 4px 0;
  1044. overflow: hidden;
  1045. font-size: 14px;
  1046. font-variant: initial;
  1047. background-color: #fff;
  1048. border-radius: 2px;
  1049. outline: none;
  1050. box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  1051. }
  1052. .ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-bottomLeft,
  1053. .ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-bottomLeft {
  1054. animation-name: antSlideUpIn;
  1055. }
  1056. .ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-topLeft,
  1057. .ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-topLeft {
  1058. animation-name: antSlideDownIn;
  1059. }
  1060. .ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
  1061. animation-name: antSlideUpOut;
  1062. }
  1063. .ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-topLeft {
  1064. animation-name: antSlideDownOut;
  1065. }
  1066. .ant-select-dropdown-hidden {
  1067. display: none;
  1068. }
  1069. .ant-select-dropdown-empty {
  1070. color: rgba(0, 0, 0, 0.25);
  1071. }
  1072. .ant-select-item-empty {
  1073. position: relative;
  1074. display: block;
  1075. min-height: 32px;
  1076. padding: 5px 12px;
  1077. color: rgba(0, 0, 0, 0.85);
  1078. font-weight: normal;
  1079. font-size: 14px;
  1080. line-height: 22px;
  1081. color: rgba(0, 0, 0, 0.25);
  1082. }
  1083. .ant-select-item {
  1084. position: relative;
  1085. display: block;
  1086. min-height: 32px;
  1087. padding: 5px 12px;
  1088. color: rgba(0, 0, 0, 0.85);
  1089. font-weight: normal;
  1090. font-size: 14px;
  1091. line-height: 22px;
  1092. cursor: pointer;
  1093. transition: background 0.3s ease;
  1094. }
  1095. .ant-select-item-group {
  1096. color: rgba(0, 0, 0, 0.45);
  1097. font-size: 12px;
  1098. cursor: default;
  1099. }
  1100. .ant-select-item-option {
  1101. display: flex;
  1102. }
  1103. .ant-select-item-option-content {
  1104. flex: auto;
  1105. overflow: hidden;
  1106. white-space: nowrap;
  1107. text-overflow: ellipsis;
  1108. }
  1109. .ant-select-item-option-state {
  1110. flex: none;
  1111. user-select: none;
  1112. }
  1113. .ant-select-item-option-active:not(.ant-select-item-option-disabled) {
  1114. background-color: #f5f5f5;
  1115. }
  1116. .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
  1117. color: rgba(0, 0, 0, 0.85);
  1118. font-weight: 600;
  1119. background-color: #e6f7ff;
  1120. }
  1121. .ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state {
  1122. color: #1890ff;
  1123. }
  1124. .ant-select-item-option-disabled {
  1125. color: rgba(0, 0, 0, 0.25);
  1126. cursor: not-allowed;
  1127. }
  1128. .ant-select-item-option-disabled.ant-select-item-option-selected {
  1129. background-color: #f5f5f5;
  1130. }
  1131. .ant-select-item-option-grouped {
  1132. padding-left: 24px;
  1133. }
  1134. .ant-select-lg {
  1135. font-size: 16px;
  1136. }
  1137. .ant-select-borderless .ant-select-selector {
  1138. background-color: transparent !important;
  1139. border-color: transparent !important;
  1140. box-shadow: none !important;
  1141. }
  1142. .ant-select.ant-select-in-form-item {
  1143. width: 100%;
  1144. }
  1145. .ant-select-compact-item:not(.ant-select-compact-last-item) {
  1146. margin-right: -1px;
  1147. }
  1148. .ant-select-compact-item:not(.ant-select-compact-last-item).ant-select-compact-item-rtl {
  1149. margin-right: 0;
  1150. margin-left: -1px;
  1151. }
  1152. .ant-select-compact-item:hover > *,
  1153. .ant-select-compact-item:focus > *,
  1154. .ant-select-compact-item:active > * {
  1155. z-index: 2;
  1156. }
  1157. .ant-select-compact-item.ant-select-focused > * {
  1158. z-index: 2;
  1159. }
  1160. .ant-select-compact-item[disabled] > * {
  1161. z-index: 0;
  1162. }
  1163. .ant-select-compact-item:not(.ant-select-compact-first-item):not(.ant-select-compact-last-item).ant-select .ant-select-selector {
  1164. border-radius: 0;
  1165. }
  1166. .ant-select-compact-item.ant-select-compact-first-item.ant-select:not(.ant-select-compact-last-item):not(.ant-select-compact-item-rtl) .ant-select-selector {
  1167. border-top-right-radius: 0;
  1168. border-bottom-right-radius: 0;
  1169. }
  1170. .ant-select-compact-item.ant-select-compact-last-item.ant-select:not(.ant-select-compact-first-item):not(.ant-select-compact-item-rtl) .ant-select-selector {
  1171. border-top-left-radius: 0;
  1172. border-bottom-left-radius: 0;
  1173. }
  1174. .ant-select-compact-item.ant-select.ant-select-compact-first-item.ant-select-compact-item-rtl:not(.ant-select-compact-last-item) .ant-select-selector {
  1175. border-top-left-radius: 0;
  1176. border-bottom-left-radius: 0;
  1177. }
  1178. .ant-select-compact-item.ant-select.ant-select-compact-last-item.ant-select-compact-item-rtl:not(.ant-select-compact-first-item) .ant-select-selector {
  1179. border-top-right-radius: 0;
  1180. border-bottom-right-radius: 0;
  1181. }
  1182. .ant-select-rtl {
  1183. direction: rtl;
  1184. }
  1185. .ant-select-rtl .ant-select-arrow {
  1186. right: initial;
  1187. left: 11px;
  1188. }
  1189. .ant-select-rtl .ant-select-clear {
  1190. right: initial;
  1191. left: 11px;
  1192. }
  1193. .ant-select-dropdown-rtl {
  1194. direction: rtl;
  1195. }
  1196. .ant-select-dropdown-rtl .ant-select-item-option-grouped {
  1197. padding-right: 24px;
  1198. padding-left: 12px;
  1199. }
  1200. .ant-select-rtl.ant-select-multiple.ant-select-show-arrow .ant-select-selector,
  1201. .ant-select-rtl.ant-select-multiple.ant-select-allow-clear .ant-select-selector {
  1202. padding-right: 4px;
  1203. padding-left: 24px;
  1204. }
  1205. .ant-select-rtl.ant-select-multiple .ant-select-selection-item {
  1206. text-align: right;
  1207. }
  1208. .ant-select-rtl.ant-select-multiple .ant-select-selection-item-content {
  1209. margin-right: 0;
  1210. margin-left: 4px;
  1211. text-align: right;
  1212. }
  1213. .ant-select-rtl.ant-select-multiple .ant-select-selection-search-mirror {
  1214. right: 0;
  1215. left: auto;
  1216. }
  1217. .ant-select-rtl.ant-select-multiple .ant-select-selection-placeholder {
  1218. right: 11px;
  1219. left: auto;
  1220. }
  1221. .ant-select-rtl.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder {
  1222. right: 7px;
  1223. }
  1224. .ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-item,
  1225. .ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
  1226. right: 0;
  1227. left: 9px;
  1228. text-align: right;
  1229. }
  1230. .ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-search {
  1231. right: 11px;
  1232. left: 25px;
  1233. }
  1234. .ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-item,
  1235. .ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder {
  1236. padding-right: 0;
  1237. padding-left: 18px;
  1238. }
  1239. .ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search {
  1240. right: 6px;
  1241. }
  1242. .ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,
  1243. .ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder {
  1244. padding-right: 0;
  1245. padding-left: 21px;
  1246. }
  1247. .ant-empty {
  1248. margin: 0 8px;
  1249. font-size: 14px;
  1250. line-height: 1.5715;
  1251. text-align: center;
  1252. }
  1253. .ant-empty-image {
  1254. height: 100px;
  1255. margin-bottom: 8px;
  1256. }
  1257. .ant-empty-image img {
  1258. height: 100%;
  1259. }
  1260. .ant-empty-image svg {
  1261. height: 100%;
  1262. margin: auto;
  1263. }
  1264. .ant-empty-footer {
  1265. margin-top: 16px;
  1266. }
  1267. .ant-empty-normal {
  1268. margin: 32px 0;
  1269. color: rgba(0, 0, 0, 0.25);
  1270. }
  1271. .ant-empty-normal .ant-empty-image {
  1272. height: 40px;
  1273. }
  1274. .ant-empty-small {
  1275. margin: 8px 0;
  1276. color: rgba(0, 0, 0, 0.25);
  1277. }
  1278. .ant-empty-small .ant-empty-image {
  1279. height: 35px;
  1280. }
  1281. .ant-empty-img-default-ellipse {
  1282. fill: #f5f5f5;
  1283. fill-opacity: 0.8;
  1284. }
  1285. .ant-empty-img-default-path-1 {
  1286. fill: #aeb8c2;
  1287. }
  1288. .ant-empty-img-default-path-2 {
  1289. fill: url('#linearGradient-1');
  1290. }
  1291. .ant-empty-img-default-path-3 {
  1292. fill: #f5f5f7;
  1293. }
  1294. .ant-empty-img-default-path-4 {
  1295. fill: #dce0e6;
  1296. }
  1297. .ant-empty-img-default-path-5 {
  1298. fill: #dce0e6;
  1299. }
  1300. .ant-empty-img-default-g {
  1301. fill: #fff;
  1302. }
  1303. .ant-empty-img-simple-ellipse {
  1304. fill: #f5f5f5;
  1305. }
  1306. .ant-empty-img-simple-g {
  1307. stroke: #d9d9d9;
  1308. }
  1309. .ant-empty-img-simple-path {
  1310. fill: #fafafa;
  1311. }
  1312. .ant-empty-rtl {
  1313. direction: rtl;
  1314. }
  1315. nz-empty {
  1316. display: block;
  1317. }
  1318. .ant-select-dropdown {
  1319. position: relative;
  1320. top: 100%;
  1321. left: 0;
  1322. display: block;
  1323. width: 100%;
  1324. margin-top: 4px;
  1325. margin-bottom: 4px;
  1326. }
  1327. .ant-select-dropdown .cdk-virtual-scroll-content-wrapper {
  1328. right: 0;
  1329. }
  1330. .ant-select-dropdown .full-width {
  1331. contain: initial;
  1332. }
  1333. .ant-select-dropdown .full-width .cdk-virtual-scroll-content-wrapper {
  1334. position: static;
  1335. }
  1336. .ant-select-dropdown .full-width .cdk-virtual-scroll-spacer {
  1337. position: absolute;
  1338. top: 0;
  1339. width: 1px;
  1340. }
  1341. nz-pagination {
  1342. display: block;
  1343. }