/* 自定义样式 */
body {
    font-family: 'Inter', system-ui, -apple-system, 'Microsoft YaHei', sans-serif;
}
.container {
    max-width: 1280px;
}
/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* 链接默认无下划线 */
a {
    text-decoration: none;
}