ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
#### 设置input样式 ```css input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {    background: #E8ECED;   color: #fff; } ``` 解决样式被默认覆盖 ```css input:-webkit-autofill{   -webkit-box-shadow: 0 0 0 400px #E8ECED inset;   -webkit-text-fill-color: #fff; //设置字体颜色 } ``` 但是如果文本框background为image此方法无法还原图片样式