先看问题
问题出现的原因
原因是我们使用了tailwindcss ,默认情况会有tailwindcss的默认属性
代码块内我们发现 background-color: transparent;
这个是默认属性导致的
button, [type='button'], [type='reset'], [type='submit'] {
-webkit-appearance: button;
background-color: transparent;
background-image: none;
}