/* 预定示意图页面样式 */

/* 页面标题 */
.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;
}

/* 座位介绍 */
.seating-intro {
    margin-bottom: 40px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

/* 座位图部分 */
.seating-map-section {
    padding: 20px 0 50px;
    background-color: #f9f9f9;
}

.seating-map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.seating-map {
    position: relative;
    max-width: 100%;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.seating-map img {
    max-width: 100%;
    height: auto;
    display: block;
}

.seating-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
}

.area-info {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: calc(50% - 10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.area-info:hover, .area-info.highlight {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.area-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 15px;
    margin-top: 5px;
}

.vip .area-color {
    background-color: #e60012;
}

.a-area .area-color {
    background-color: #ff9900;
}

.b-area .area-color {
    background-color: #3399ff;
}

.c-area .area-color {
    background-color: #66cc66;
}

.area-details {
    flex: 1;
}

.area-details h3 {
    color: #333;
    font-size: 18px;
    margin: 0 0 8px;
}

.area-details p {
    color: #666;
    font-size: 14px;
    margin: 0 0 5px;
    line-height: 1.5;
}

.area-price {
    color: #e60012 !important;
    font-weight: 500;
    font-size: 16px !important;
}

/* 座位详情标签页 */
.seating-details {
    padding: 50px 0;
}

.seating-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: #e60012;
}

.tab-btn.active {
    color: #e60012;
    border-bottom-color: #e60012;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.area-detail-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.area-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.area-image img {
    width: 100%;
    height: auto;
    display: block;
}

.area-description {
    flex: 1;
}

.area-description h3 {
    color: #333;
    font-size: 22px;
    margin: 0 0 15px;
}

.area-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.area-description ul {
    color: #555;
    padding-left: 20px;
    margin-bottom: 20px;
}

.area-description ul li {
    margin-bottom: 8px;
}

.area-capacity {
    color: #666;
    font-weight: 500;
    margin-top: 20px;
}

/* 观演须知 */
.seating-notes {
    /* 节目单样式 */
    .program-list {
        padding: 50px 0;
        background-color: #f9f9f9;
    }
    
    .program-note {
        font-size: 16px;
        color: #666;
        margin-top: 10px;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
        margin: 15px 0 30px;
    }
    
    .contact-info p {
        margin: 5px 0;
        color: #555;
    }
    
    .program-items {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .program-item {
        background-color: #fff;
        border-radius: 8px;
        padding: 20px 25px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .program-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .program-item h3 {
        color: #c62828;
        font-size: 22px;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    
    .program-item p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .program-item p:last-child {
        margin-bottom: 0;
    }
    
    @media (max-width: 768px) {
        .program-item {
            padding: 15px 20px;
        }
        
        .program-item h3 {
            font-size: 20px;
        }
    }
}
.notes-content {
    max-width: 800px;
    margin: 0 auto;
}

.note-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.note-icon {
    flex: 0 0 60px;
    margin-right: 20px;
}

.note-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.note-text {
    flex: 1;
}

.note-text h3 {
    color: #333;
    font-size: 18px;
    margin: 0 0 10px;
}

.note-text p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* 购票号召 */
.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) {
    .area-info {
        width: 100%;
    }
    
    .area-detail-content {
        flex-direction: column;
    }
    
    .area-image {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .tab-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .note-item {
        flex-direction: column;
    }
    
    .note-icon {
        margin-bottom: 15px;
        text-align: center;
    }
}