/* 不可编辑 */
*[disabled] {
  color: #333 !important;
}

.ant-input[disabled],.ant-input-affix-wrapper-disabled,.ant-select-disabled .ant-select-selector {
  background-color: #fafafa !important;
}

.ant-input-disabled,
.ant-picker-disabled,
.ant-input-number-disabled,
.ant-radio-disabled + span,
.ant-checkbox-disabled + span,
.ant-select-selection-item-content,
.ant-picker-input > input[disabled],
.ant-select-disabled .ant-select-selection-item,
.ant-select-disabled.ant-select:not(.ant-select-customize-input)
  .ant-select-selector {
  color: #333 !important;
}

/* 表单禁用状态时不需要显示 placeholder */
*[disabled]::placeholder {
  color: transparent !important;
}
.ant-select-disabled .ant-select-selection-placeholder {
  display: none;
}

/* 绿色的按钮 */
.ant-btn.ant-btn-green {
  background-color: #14abb1;
  border-color: #14abb1;
  color: #fff;
}

.ant-btn.ant-btn-green:hover,
.ant-btn.ant-btn-green:active,
.ant-btn.ant-btn-green:focus {
  background-color: #18c5cb;
  border-color: #18c5cb;
  color: white;
}