选择输入框历史记录后的输入框的背景色和字体颜色的方法

input::-webkit-autofill { 
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
}

input:-internal-autofill-previewed,input:-internal-autofill-selected {
 -webkit-text-fill-color: #fff; //字体颜色
 transition: background-color 5000s ease-out 0.5s; //背景色延迟显示
}