﻿.detail-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.detail-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.4;
}

.detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.detail-body p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.detail-body h2 {
    font-size: 22px;
    font-weight: 600;
    color: #003366;
    margin: 30px 0 15px;
    padding-left: 10px;
    border-left: 4px solid #00cccc;
}

.detail-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0066cc;
    margin: 25px 0 12px;
}

.detail-body ul,
.detail-body ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.detail-body li {
    margin-bottom: 8px;
}

.detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

.detail-body blockquote {
    border-left: 4px solid #00cccc;
    padding-left: 15px;
    margin: 20px 0;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 0 8px 8px 0;
}

.detail-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.detail-tags span {
    display: inline-block;
    padding: 6px 15px;
    background: #f0f7ff;
    color: #0066cc;
    border-radius: 15px;
    font-size: 13px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.detail-share {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.detail-share span {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
}

.share-btn {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f7ff;
    color: #0066cc;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    background: linear-gradient(135deg, #0066cc, #00cccc);
    color: #fff;
    transform: translateY(-3px);
}

.related-news {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #00cccc;
}

.related-news h3 {
    font-size: 20px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 20px;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.related-item {
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-item:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.related-item a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.related-item a:hover {
    color: #0066cc;
}

.related-item span {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .detail-content {
        padding: 30px;
    }
    
    .detail-title {
        font-size: 28px;
    }
    
    .related-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .detail-content {
        padding: 20px;
    }
    
    .detail-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .detail-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .detail-meta {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }
    
    .detail-body {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .detail-body h2 {
        font-size: 20px;
        margin: 20px 0 12px;
    }
    
    .detail-body h3 {
        font-size: 17px;
        margin: 18px 0 10px;
    }
    
    .detail-body p {
        margin-bottom: 15px;
    }
    
    .detail-tags span {
        padding: 5px 12px;
        font-size: 12px;
        margin-right: 8px;
    }
    
    .related-news {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .related-news h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .related-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .related-item {
        padding: 15px;
    }
    
    .related-item a {
        font-size: 14px;
    }
    
    .share-btn {
        width: 32px;
        height: 32px;
        line-height: 32px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .detail-content {
        padding: 15px;
    }
    
    .detail-title {
        font-size: 20px;
    }
    
    .detail-body {
        font-size: 14px;
    }
}