/* 页面标题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;
}

/* 基本信息 */
.info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.info-item {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.info-icon img {
    width: 100%;
    height: 100%;
}

.info-item h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.info-item p {
    margin-bottom: 10px;
}

/* 推荐路线 */
.routes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.route-item {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.route-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.route-info {
    padding: 20px;
}

.route-info h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

.route-desc {
    color: #666;
    margin-bottom: 15px;
}

.route-path h4 {
    color: #2c5530;
    margin-bottom: 10px;
}

/* 注意事项 */
.notices-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.notice-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.notice-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.notice-item h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.notice-item ul {
    list-style: disc;
    padding-left: 20px;
}

.notice-item li {
    margin-bottom: 10px;
    color: #666;
}

/* 交通指南 */
.transport-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.transport-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.transport-info {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.transport-item {
    margin-bottom: 20px;
}

.transport-item h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

/* 响应式布局 */
@media screen and (max-width: 1024px) {
    .info-container,
    .routes-container,
    .notices-container {
        grid-template-columns: 1fr;
    }
    
    .transport-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .info-container {
        grid-template-columns: 1fr;
    }
} 