ant-design-vue 如何设置a-input双击后的颜色
```css
/* webkit, opera, IE9 (谷歌浏览器)*/
::selection {
background:rgb(255, 145, 0);
color:red;
}
/* mozilla firefox(火狐浏览器) */
::-moz-selection {
background:rgb(255, 145, 0);
color:red;
}
试试
```