Google reCAPTCHA 背景 CSS 颜色

Google reCAPTCHA background CSS color

我在 html 中像这样使用 Google 的 reCAPTCHA: <div class="g-recaptcha" data-sitekey=""></div> 并添加此脚本 <script src='https://www.google.com/recaptcha/api.js'></script>。 我怎样才能摆脱深灰色背景?我试过更改 recaptcha_response_fieldbackground-color 但它没有任何改变。

我通过删除 Google reCAPTCHA 创建的 iframe 的背景颜色解决了这个问题。

这是 Google reCAPTCHA 创建的内容:

<div class="g-recaptcha" data-sitekey="">
   <div style="width: 304px; height: 78px;">
      <div>
         <iframe title="reCAPTCHA" src="" width="304" height="78" role="presentation" name="a-cvin5ubac2l0" frameborder="0" scrolling="no" sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox"></iframe>
      </div>
   </div>
</div>

我将该 iframe 的 css 更改为 background-color: inherit;