/* 新闻详情容器 */
.news-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* 面包屑导航 */
.breadcrumb {
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}
.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* 文章头部 */
.article-header {
    margin: 40px 0;
    padding-bottom: 25px;
    border-bottom: 2px solid #1a5276;
}
.article-header h1 {
    font-size: 32px;
    color: #1a5276;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 14px;
    color: #666;
    justify-content: center;
}
.article-meta .view-count {
    color: #999;
    font-size: 13px;
}

/* 视频播放器 */
.news-video {
    margin: 30px 0;
}
.news-video h2 {
    font-size: 20px;
    color: #1a5276;
    margin-bottom: 20px;
    text-align: center;
}
.news-video video {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 新闻内容 */
.news-content {
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.7;
}
.news-content h2 {
    font-size: 24px;
    color: #1a5276;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #3498db;
    text-align: left;
}
.news-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    text-align: justify;
    text-indent: 2em;
}
.news-content ul {
    margin: 20px 0 25px 0;
    padding-left: 40px;
}
.news-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* 图片展示 */
.image-container {
    margin: 30px 0;
    text-align: center;
}
.image-container h3 {
    font-size: 18px;
    color: #1a5276;
    margin-bottom: 20px;
}
.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 代码示例 */
.code-example {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: auto;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.code-example code {
    color: #333;
}

/* 底部导航 */
.article-footer {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}
.nav-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1a5276;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btn:hover {
    background-color: #2980b9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* 时间安排表格样式 */
.schedule-table {
    margin: 30px 0;
    overflow-x: auto;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

.schedule-table th {
    background: linear-gradient(135deg, #1a5276, #2980b9);
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.schedule-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #333;
}

.schedule-table tbody tr:hover {
    background-color: #f8f9fa;
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-detail-container {
        padding: 15px;
    }
    .article-header h1 {
        font-size: 24px;
    }
    .news-content h2 {
        font-size: 20px;
    }
    .news-content p {
        font-size: 15px;
    }
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}