/* 轮播图样式 */
.banner {
    margin-top: 80px;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 园林特色样式 */
.feature-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    color: #2c5530;
    margin-bottom: 10px;
}

/* 最新动态样式 */
.news-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 20px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.news-item img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.news-content h3 {
    font-size: 18px;
    color: #2c5530;
    margin-bottom: 10px;
}

.news-content p {
    color: #666;
    margin-bottom: 10px;
} 