| | |
| | | text-decoration: none; |
| | | } |
| | | |
| | | /* 隐藏滚动条但保持滚动功能 */ |
| | | ::-webkit-scrollbar { |
| | | width: 5px; |
| | | height: 5px; |
| | | display: none; |
| | | width: 0; |
| | | height: 0; |
| | | } |
| | | |
| | | ::-webkit-scrollbar-track-piece { |
| | | background-color: rgba(0, 0, 0, 0.2); |
| | | -webkit-border-radius: 6px; |
| | | display: none; |
| | | } |
| | | |
| | | ::-webkit-scrollbar-thumb:vertical { |
| | | height: 5px; |
| | | background-color: hsla(0, 0%, 49%, 0.7); |
| | | -webkit-border-radius: 6px; |
| | | display: none; |
| | | } |
| | | |
| | | ::-webkit-scrollbar-thumb:horizontal { |
| | | width: 5px; |
| | | background-color: hsla(0, 0%, 49%, 0.7); |
| | | -webkit-border-radius: 6px; |
| | | display: none; |
| | | } |
| | | |
| | | /* 全局隐藏滚动条 - 跨浏览器兼容 */ |
| | | * { |
| | | scrollbar-width: none; /* Firefox */ |
| | | -ms-overflow-style: none; /* IE and Edge */ |
| | | } |
| | | |
| | | *::-webkit-scrollbar { |
| | | display: none; /* Chrome, Safari, Opera */ |
| | | width: 0; |
| | | height: 0; |
| | | } |
| | | |
| | | input { |