/* 页面标题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(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.info-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.info-icon img {
    width: 100%;
    height: 100%;
}

.info-card h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
}

/* 留言表单 */
.message-form {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #2c5530;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1e3c22;
}

/* 地图位置 */
.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.map-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.map-info h3 {
    color: #2c5530;
    margin-bottom: 20px;
}

.transport-item {
    margin-bottom: 20px;
}

.transport-item h4 {
    color: #2c5530;
    margin-bottom: 10px;
}

.transport-item p {
    color: #666;
}

/* 响应式布局 */
@media screen and (max-width: 1024px) {
    .info-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .info-container {
        grid-template-columns: 1fr;
    }

    .message-form {
        padding: 20px;
    }
} 