
          /* 自定义样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

/* 导航栏样式 */
nav {
    transition: all 0.3s ease;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c0e6c4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a3d9a5;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 悬停效果 */
.hover\:scale-105 {
    transition: transform 0.2s ease;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

/* 响应式图片 */
img {
    max-width: 100%;
    height: auto;
}

/* 自定义动画 */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        