WP 输入框显示白色背景,即使我更改为 "background-color: none;"(Themify 构建器)

WP input box shows white background, even though I change to "background-color: none;" (Themify bulider)

有人可以帮我解决一个烦人的错误吗?

我想将表单输入字段更改为透明背景,只保留 Themify Bulider with Contact form 7 中字段下方的实线。当我添加如下所示的自定义 CSS 时,它仍然保留我带有白色输入框,如您所见:www.creedo.ee。

.wpcf7 input[type=text]{
   border: none;
   box-shadow: none;
   border-radius: 0;
   border-bottom: 1px solid #999;
   background-color: none;
}

有什么建议吗?谢谢!

尝试以下操作:

.mdc-text-field {
    background-color: transparent !important;
}