﻿@charset "utf-8";

/* ===== 新闻详情页样�?===== */

.news-detail-container {
    padding: 20px 0;
}

/* 文章标题 */
.news-detail-title {
    font-size: 26px;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* 元信息（日期、标签） */
.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 24px;
}

.news-detail-date {
    font-size: 14px;
    color: #999;
}

.news-detail-tag {
    display: inline-block;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 10px;
}

.news-detail-tag.company {
    background: #e8f4fd;
    color: #0066cc;
    border: 1px solid #b8daf5;
}

/* ===== 视频�?===== */
.news-detail-video {
    margin-bottom: 30px;
}

.news-detail-video-player {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.news-detail-video-player video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    object-fit: contain;
    background: #000;
}

.news-detail-video-desc {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 12px;
    line-height: 1.6;
}

/* ===== 文章正文 ===== */
.news-detail-body {
    padding: 10px 0;
}

.news-detail-body p {
    font-size: 15px;
    color: #555;
    line-height: 2;
    text-indent: 2em;
    text-align: justify;
    margin-bottom: 16px;
}

.news-detail-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

/* ===== 返回列表 ===== */
.news-detail-back {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.news-detail-back a {
    display: inline-block;
    padding: 10px 30px;
    font-size: 14px;
    color: #fff;
    background: #0066cc;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s;
}

.news-detail-back a:hover {
    background: #004999;
}

/* ===== 响应�?===== */
@media (max-width: 768px) {
    .news-detail-title {
        font-size: 20px;
    }

    .news-detail-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    .news-detail-body p {
        font-size: 14px;
    }

    .news-detail-video-player {
        max-width: 100%;
    }
}
