/* 全局样式 */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header, footer {
    text-align: center;
    padding: 1rem;
    background-color: #e8f5e9;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

/* 断舍离区块样式 */
.danshari-section {
    width: 300px;
    text-align: center;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.danshari-section:hover {
    transform: translateY(-5px);
}

/* 图片模糊虚化效果 */
.image-container {
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}

.image-container:hover img {
    filter: blur(5px);
}