// 创建一个新的样式表
let style = document.createElement('style');
style.type = 'text/css';
// 添加样式规则
style.innerHTML = `
.invisible-scrollbar::-webkit-scrollbar {
display: none;
}
`;
// 将样式表添加到文档头部
document.head.appendChild(style);
// 现在,选中的元素将应用新样式