/* 新闻详情页面样式 */
.news-detail {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-detail h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.news-detail h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #0099ff);
    border-radius: 2px;
}

.news-detail .categories {
    margin-bottom: 30px;
    color: #666;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: inline-block;
    border-left: 4px solid #0066cc;
}

.news-detail .categories span {
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.news-detail .categories span:hover {
    color: #0066cc;
    background-color: #e3f2fd;
}

.news-detail {
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.news-detail h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.news-detail .date {
    color: #888;
    margin-bottom: 20px;
    font-size: 14px;
}

.news-detail p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}