/* 节目单页面样式 */

/* 页面标题 */
.page-header {
    background-color: #f5f5f5;
    padding: 20px 0;
    margin-bottom: 30px;
}

.page-header h1 {
    color: #333;
    font-size: 28px;
    margin: 0 0 5px;
}

.breadcrumb {
    color: #666;
    font-size: 14px;
}

.breadcrumb a {
    color: #e60012;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 节目介绍 */
.program-intro {
    margin-bottom: 40px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

/* 节目列表 */
.program-list-section {
    padding: 20px 0 50px;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.program-number {
    background-color: #e60012;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    min-width: 80px;
    padding: 20px;
}

.program-content {
    flex: 1;
    padding: 20px 25px;
}

.program-content h3 {
    color: #333;
    font-size: 20px;
    margin: 0 0 15px;
}

.program-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.detail-label {
    color: #888;
    font-size: 14px;
    margin-bottom: 5px;
}

.detail-value {
    color: #333;
    font-weight: 500;
}

/* 图片展示 */
.program-gallery {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* 购票号召 */
.booking-cta {
    background-color: #e60012;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    margin: 0 0 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-content .btn {
    background-color: white;
    color: #e60012;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-content .btn:hover {
    background-color: #f5f5f5;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .program-item {
        flex-direction: column;
    }
    
    .program-number {
        width: 100%;
        padding: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .program-details {
        flex-direction: column;
        gap: 10px;
    }
}