/* 页面标题banner */
.page-banner {
    margin-top: 80px;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 18px;
}

/* 标题样式 */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #2c5530;
    margin: 15px auto;
}

/* 园林简介 */
.intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* 文化特色 */
.culture-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.culture-item {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s;
}

.culture-item:hover {
    transform: translateY(-5px);
}

.culture-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.culture-item h3 {
    font-size: 20px;
    color: #2c5530;
    margin-bottom: 10px;
}

/* 发展愿景 */
.vision-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.vision-text {
    flex: 1;
}

.vision-text p {
    margin-bottom: 20px;
}

.vision-text ul {
    list-style: disc;
    padding-left: 20px;
}

.vision-text li {
    margin-bottom: 10px;
}

.vision-image {
    flex: 1;
}

.vision-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* 团队介绍 */
.team-content {
    text-align: center;
}

.team-content img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-content p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
} 