/* 文化体验页面样式 */
.culture-banner {
    margin-top: 80px;
    height: 400px;
    background-image: url('../images/culture-banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* 活动展示区 */
.activity-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.activity-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.activity-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-content {
    padding: 20px;
}

.activity-title {
    font-size: 20px;
    color: #c12c1f;
    margin-bottom: 10px;
}

.activity-info {
    color: #666;
    margin-bottom: 15px;
}

.activity-time {
    display: flex;
    align-items: center;
    color: #666;
    margin-bottom: 10px;
}

.activity-time i {
    margin-right: 5px;
    color: #c12c1f;
}

/* 教育基地 */
.base-section {
    padding: 60px 0;
}

.base-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.base-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.base-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.base-content {
    padding: 20px;
}

.base-content h3 {
    color: #c12c1f;
    font-size: 24px;
    margin-bottom: 20px;
}

.base-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 预约表单 */
.booking-section {
    background: #f5f5f5;
    padding: 60px 0;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #c12c1f;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #a11c1f;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .base-info {
        grid-template-columns: 1fr;
    }
    
    .base-image {
        height: 300px;
    }
    
    .culture-banner {
        height: 300px;
    }
    
    .booking-form {
        padding: 20px;
    }
} 