.news-detail {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.news-detail-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-detail-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.news-detail-meta span {
    margin-right: 20px;
}

.news-detail-cover {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.news-detail-cover img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.news-detail-content p {
    margin-bottom: 15px;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 4px;
}

.news-detail-tags {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.tags-label {
    font-size: 14px;
    color: #666;
    margin-right: 10px;
}

.tag-item {
    display: inline-block;
    padding: 4px 12px;
    margin-right: 10px;
    margin-bottom: 10px;
    background: #f5f5f5;
    color: #666;
    border-radius: 15px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #007bff;
    color: #fff;
}

.related-news {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.related-news-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.related-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-news-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.related-news-list li:last-child {
    border-bottom: none;
}

.related-news-list li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.related-news-list li a:hover {
    color: #007bff;
}

.related-news-time {
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
}