给input 设置 autocomplete="new-password"

但是只有type 为text的时候 才生效。password 并没有生效
当input 默认填充时,会出现这样的样式:
如下图:
解决方法:
- input:-webkit-autofill {
- box-shadow: 0 0 0 1000px #065764 inset; // 背景颜色
- -webkit-text-fill-color: #fff; // input 的文字的颜色
- border: 0;
- }
效果:
