
"use document";
setInterval(function() {
$('.bi-v-tape').css({
'background-color': '#ffffff',
'color': '#000000',
'font-size': '14px' })//此处修改下拉框字体大小
}, 200)
$(document).on("mouseenter", ".bi-single-select-item", function() {
$(this).css({
"background": "#AED9FF",
"color": "#2590EB",
"font-size": "14px",//此处修改悬浮后的下拉框字体大小
});
});
$(document).on("mouseleave", ".bi-single-select-item", function() {
$(this).css({
"background": "",
"color": "",
"font-size": "",
"text-align": "" });
});//鼠标移出