/** 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-breadcrumb {
  display: flex;
  height: 36px;
  padding-left: 18px;
  align-items: center;
  background: #fff;
  background-clip: border-box;
  font-size: 14px;
  box-sizing: border-box;
}
.fs-breadcrumb .ant-breadcrumb-link > a {
  color: #000;
}
.fs-breadcrumb .ant-breadcrumb-link > a:hover {
  color: #3367d6;
}
.fs-breadcrumb > span:last-child a,
.fs-breadcrumb > span:last-child {
  color: #3367d6;
  cursor: default;
}
.fs-breadcrumb-bordered {
  border-bottom: 1px solid #e7e7e7;
}
