/**
 * 绿仓回收 - 主题主样式
 */

/* 基础重置 */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-color: #f7faf6;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #22c55e;
}

/* 过渡动画 */
* {
    transition: all 0.3s ease;
}

/* 容器优化 */
.max-w-7xl {
    max-width: 80rem;
}

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