/* 演出咨询页面样式 */

/* 页面标题 */
.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;
}

/* 当前演出部分 */
.shows-section {
    padding: 30px 0 50px;
}

.show-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.show-image {
    flex: 0 0 40%;
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.show-details {
    flex: 0 0 60%;
    padding: 30px;
}

.show-title {
    color: #333;
    font-size: 24px;
    margin: 0 0 20px;
}

.show-info {
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 10px;
}

.info-label {
    color: #666;
    font-weight: 500;
    margin-right: 5px;
}

.info-value {
    color: #333;
}

.show-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.show-actions {
    margin-top: 25px;
}

.show-actions .btn {
    margin-right: 15px;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e9e9e9;
}

/* 演出日历部分 */
.schedule-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.schedule-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.calendar {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #e60012;
    color: white;
}

.calendar-title {
    font-size: 18px;
    font-weight: 500;
}

.calendar-nav button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.calendar-nav button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
}

.calendar-weekday {
    text-align: center;
    padding: 10px;
    font-weight: 500;
    color: #666;
    border-bottom: 1px solid #eee;
}

.calendar-day {
    min-height: 80px;
    padding: 10px;
    border: 1px solid #f0f0f0;
    position: relative;
}

.calendar-day.empty {
    background-color: #f9f9f9;
}

.day-number {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.day-event {
    font-size: 12px;
    background-color: #e60012;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    margin-bottom: 3px;
    text-align: center;
}

.schedule-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-right: 8px;
}

.legend-color.regular {
    background-color: #e60012;
}

.legend-color.special {
    background-color: #ff9900;
}

.legend-color.soldout {
    background-color: #999;
}

.legend-text {
    font-size: 14px;
    color: #666;
}

/* 演出资讯部分 */
.news-section {
    padding: 50px 0;
}

.news-list {
    margin-top: 30px;
}

/* 新闻项目点击效果 */
.news-item {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 新闻模态框样式 */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.news-modal-content {
    background-color: #fff;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.news-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.news-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.news-modal-header h2 {
    margin: 0 0 10px 0;
    color: #333;
}

.news-modal-date {
    color: #888;
    font-size: 14px;
}

.news-modal-body {
    padding: 20px;
    overflow-y: auto;
    line-height: 1.6;
}

.news-modal-body h4 {
    margin: 20px 0 10px 0;
    color: #e60012;
}

.news-modal-body p {
    margin-bottom: 15px;
}

.news-date {
    flex: 0 0 100px;
    background-color: #e60012;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.date-day {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 14px;
    margin: 5px 0;
}

.date-year {
    font-size: 14px;
    opacity: 0.8;
}

.news-content {
    flex: 1;
    padding: 20px;
}

.news-title {
    color: #333;
    font-size: 18px;
    margin: 0 0 10px;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px;
}

.news-meta {
    color: #999;
    font-size: 14px;
}

.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-link, .page-dots, .page-next {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 4px;
    text-decoration: none;
}

.page-link {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.page-link.active, .page-link:hover {
    background-color: #e60012;
    color: white;
    border-color: #e60012;
}

.page-dots {
    color: #666;
}

.page-next {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.page-next:hover {
    background-color: #e9e9e9;
}

/* 常见问题部分 */
.faq-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.faq-toggle {
    font-size: 24px;
    color: #e60012;
    font-weight: 300;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 0 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #f0f0f0;
}

/* 联系咨询部分 */
.contact-section {
    padding: 50px 0;
}

.contact-content {
    display: flex;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 0 0 70%;
    padding: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-icon {
    flex: 0 0 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.info-icon img {
    width: 40px;
    height: 40px;
}

.info-text {
    flex: 1;
}

.info-text h3 {
    color: #333;
    font-size: 18px;
    margin: 0 0 10px;
}

.info-text p {
    color: #555;
    margin: 0 0 5px;
}

.info-note {
    color: #999;
    font-size: 14px;
}

.contact-qrcode {
    flex: 0 0 30%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.contact-qrcode img {
    width: 180px;
    height: 180px;
    border: 1px solid #eee;
    padding: 10px;
    background-color: #fff;
    margin-bottom: 15px;
}

.contact-qrcode p {
    color: #666;
    margin: 0;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .show-card {
        flex-direction: column;
    }
    
    .show-image, .show-details {
        flex: 0 0 100%;
    }
    
    .show-image img {
        height: 300px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-qrcode {
        flex: 0 0 100%;
    }
    
    .contact-qrcode {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .calendar-grid {
        font-size: 12px;
    }
    
    .calendar-day {
        min-height: 60px;
        padding: 5px;
    }
    
    .day-event {
        font-size: 10px;
        padding: 1px 3px;
    }
    
    .news-date {
        flex: 0 0 80px;
    }
    
    .date-day {
        font-size: 20px;
    }
    
    .date-month, .date-year {
        font-size: 12px;
    }
    
    .news-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .news-item {
        flex-direction: column;
    }
    
    .news-date {
        flex: 0 0 auto;
        flex-direction: row;
        padding: 10px;
        justify-content: flex-start;
    }
    
    .date-day, .date-month, .date-year {
        margin: 0 5px;
    }
    
    .schedule-legend {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* 分隔线样式 */
.divider {
    width: 60px;
    height: 3px;
    background-color: #e60012;
    margin: 15px 0 30px;
}

.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    color: #333;
    font-size: 24px;
    margin: 0;
}