/* 新闻详情页样式 */
.news-detail {
    margin-top: 100px;
    padding: 50px 0;
    background: #fff;
}

/* 新闻内容 */
.news-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.news-header {
    margin-bottom: 30px;
    text-align: center;
}

.news-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.news-meta {
    color: #666;
    font-size: 14px;
}

.news-meta span {
    margin: 0 10px;
}

.news-body {
    line-height: 1.8;
    color: #333;
}

.news-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.news-body h2 {
    font-size: 24px;
    color: #333;
    margin: 30px 0 20px;
}

.news-body p {
    margin-bottom: 20px;
}

.news-body blockquote {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #ff6b81;
    font-style: italic;
    color: #666;
}

/* 新闻页脚 */
.news-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tags a {
    display: inline-block;
    padding: 5px 15px;
    background: #f8f9fa;
    color: #666;
    border-radius: 20px;
    margin-right: 10px;
    text-decoration: none;
    transition: background 0.3s;
}

.tags a:hover {
    background: #ff6b81;
    color: #fff;
}

.share-btn {
    display: inline-block;
    width: 36px;
    height: 36px;
    margin-left: 10px;
    background: #f8f9fa;
    border-radius: 50%;
    text-indent: -9999px;
    position: relative;
    transition: background 0.3s;
}

.share-btn:hover {
    background: #ff6b81;
}

/* 相关新闻 */
.related-news {
    margin-bottom: 50px;
}

.section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-10px);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item h3 {
    padding: 20px;
    font-size: 18px;
    color: #333;
    margin: 0;
}

.news-item .date {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
}

/* 评论区 */
.comments {
    max-width: 800px;
    margin: 0 auto;
}

.comment-form {
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    height: 100px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
    margin-bottom: 15px;
}

.submit-comment {
    padding: 10px 30px;
    background: #ff6b81;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-comment:hover {
    background: #ff4757;
}

.comment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-content {
    flex: 1;
}

.comment-meta {
    margin-bottom: 10px;
}

.comment-author {
    font-weight: bold;
    color: #333;
    margin-right: 10px;
}

.comment-date {
    color: #666;
    font-size: 14px;
}

.comment-content p {
    color: #333;
    line-height: 1.6;
} 