/** table */
.fs-scroller-style {
  /* 定义滑块内阴影+圆角 */
}
.fs-scroller-style::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.fs-scroller-style::-webkit-scrollbar-track {
  background-color: rgba(224, 224, 224, 0.2);
}
.fs-scroller-style::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
/** 表单提示文字颜色 */
.ant-input::-webkit-input-placeholder,
.ant-input-number-input::-webkit-input-placeholder,
.ant-time-picker-input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
.ant-input:-moz-placeholder,
.ant-input-number-input:-moz-placeholder,
.ant-time-picker-input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
.ant-input::-moz-placeholder,
.ant-input-number-input::-moz-placeholder,
.ant-time-picker-input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
.ant-input:-ms-input-placeholder,
.ant-input-number-input:-ms-input-placeholder,
.ant-time-picker-input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
.ant-select-selection__placeholder {
  color: #999;
}
.fs-multiple-select {
  position: relative;
}
.fs-multiple-select .fs-icon-up {
  transform: rotate(180deg);
  transition: transform 0.5s;
}
.fs-multiple-select .fs-icon-down {
  transform: rotate(0deg);
  transition: transform 0.5s;
}
.fs-multiple-select-wrap {
  display: flex;
}
.fs-multiple-select-wrap-label {
  line-height: 32px;
  margin-right: 4px;
}
.fs-multiple-select-opts-search .ant-input-search {
  padding: 8px;
}
.fs-multiple-select-opts-search .ant-checkbox-wrapper {
  padding-left: 12px;
  width: 100%;
  height: 32px;
  line-height: 32px;
}
.fs-multiple-select-opts-search .ant-checkbox-wrapper:hover {
  border-radius: 2px;
  transition: all 0.3s;
  background: rgba(51, 103, 214, 0.1);
}
.fs-multiple-select-opts-search .ant-checkbox-wrapper span.check-all {
  padding: 4px 5px;
}
.fs-multiple-select-opts-search-defalut {
  padding: 0px;
}
.fs-multiple-select-opts-search-defalut-input-check .ant-input-search {
  padding-bottom: 4px;
}
.fs-multiple-select-opts-empty {
  text-align: center;
  padding-top: 54px;
}
.fs-multiple-select-opts-content .ant-checkbox-wrapper {
  display: inline-block;
  width: 100%;
}
.fs-multiple-select-opts-content .ant-checkbox + span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  width: calc(100% - 16px);
  vertical-align: middle;
  padding-right: 0px;
}
.fs-multiple-select-opts.ant-popover-placement-bottomLeft {
  padding-top: 0px;
}
.fs-multiple-select-opts .ant-popover-inner {
  overflow-y: auto;
}
.fs-multiple-select-opts .ant-popover-inner-content {
  padding: 0px;
}
.fs-multiple-select-opts .ant-popover-arrow {
  display: none;
}
.fs-multiple-select-checked {
  background: rgba(51, 103, 214, 0.1);
}
.fs-multiple-select-item {
  height: 32px !important;
  line-height: 32px;
  padding: 0px 12px;
}
.fs-multiple-select-item:hover {
  background: rgba(51, 103, 214, 0.1);
}
.fs-multiple-select-clear {
  z-index: 1;
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 12px;
  color: #999;
  display: none;
}
.fs-multiple-select-clear:hover {
  color: #666;
}
.fs-multiple-select-show {
  cursor: pointer;
}
.fs-multiple-select-show:hover .ant-input {
  border-color: #5b8ae3;
  border-right-width: 1px !important;
}
.fs-multiple-select-show .ant-input.ant-input-disabled {
  background-color: #fff;
  color: #000;
  pointer-events: none;
}
.fs-multiple-select-show .ant-input:not(:last-child) {
  padding-right: 24px !important;
}
.fs-multiple-select-show .anticon-down {
  cursor: pointer !important;
}
.fs-multiple-select .ant-input-clear-icon {
  display: none;
}
.fs-multiple-select:hover .fs-multiple-select-clear {
  display: block;
}
.fs-multiple-select:hover .anticon-down.selected {
  display: none;
}
