Chromeがスタイリングするのを防ぐ方法はありますかinput type=search。これinput type=textをHTML5検索に変更すると、入力に適用したすべてのスタイルがボックス化されますが、入力のスタイルを適切に設定できます。
タイプ=テキスト

タイプ=検索

プロパティをリセットして回答を更新
input[type="search"] {
-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
-webkit-appearance: none;
}