/* 红色历史页面样式 */
.history-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

.history-item {
    margin-bottom: 3rem;
}

.history-item h2 {
    color: #9e1c1c;
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #c5a368;
    padding-bottom: 0.5rem;
}

.history-detail {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.history-detail img {
    width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.history-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.history-list {
    list-style: none;
    padding: 0;
}

.history-list li {
    background: #f5f3ef;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border-radius: 5px;
    font-size: 1.1rem;
    color: #701616;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .history-detail {
        flex-direction: column;
    }

    .history-detail img {
        width: 100%;
    }
    .nav {
        flex-direction: column;
        text-align: center;
    }

    .culture-intro {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .intro-images {
        grid-template-columns: 1fr;
    }

    .banner-text {
        font-size: 1.2rem;
    }
}
