/* 节庆习俗页面样式 */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h2 {
    color: #CC0000;
    font-size: 32px;
    margin-bottom: 10px;
}

.page-title p {
    color: #666;
    font-size: 18px;
}

/* 时间轴样式 */
.festival-timeline {
    position: relative;
    padding: 40px 0;
}

.festival-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #CC0000, #FFD700);
    border-radius: 2px;
}

.festival-item {
    position: relative;
    margin-bottom: 60px;
}

.festival-item:last-child {
    margin-bottom: 0;
}

.festival-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #CC0000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 18px;
    z-index: 1;
}

.festival-content {
    display: flex;
    gap: 30px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.festival-content img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.festival-content img:hover {
    transform: scale(1.02);
}

.festival-text {
    flex: 1;
}

.festival-text h3 {
    color: #CC0000;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700;
}

.festival-details {
    display: grid;
    gap: 20px;
}

.festival-details h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.festival-details h4::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: #CC0000;
    margin-right: 10px;
    border-radius: 2px;
}

.festival-details p {
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

.festival-details ul {
    list-style: none;
    padding-left: 20px;
}

.festival-details li {
    color: #666;
    line-height: 1.8;
    position: relative;
}

.festival-details li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #FFD700;
    border-radius: 50%;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .festival-content {
        flex-direction: column;
    }

    .festival-content img {
        width: 100%;
    }

    .festival-timeline::before {
        left: 20px;
    }

    .festival-date {
        left: 20px;
        transform: none;
    }
} 