{
    "status": "not_found",
    "message": "未找到匹配的文章链接",
    "current_url": "http:\/\/www.88316.net\/article\/show.html"
}
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title><br />
<b>Warning</b>:  Undefined variable $row in <b>/www/wwwroot/88316.net/show.php</b> on line <b>117</b><br />
<br />
<b>Warning</b>:  Trying to access array offset on value of type null in <b>/www/wwwroot/88316.net/show.php</b> on line <b>117</b><br />
</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <!-- 搜狗数据结构化代码 -->
<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "website",
    "url": "http://www.88316.net/article/show.html",
    "name": "show.php",
    "description": "这是通过PHP生成的搜狗数据结构化代码示例",
    "image": "https://example.com/default-image.jpg"
}
</script>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f6f6f6;
            color: #121212;
            line-height: 1.6;
        }
        
        .container {
            width: 1500px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            min-height: 100vh;
        }
        
        /* 头部样式 */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: #fff;
            border-bottom: 1px solid #f0f0f0;
            padding: 0 40px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 22px;
            font-weight: bold;
            color: #0084ff;
        }
        
        .logo i {
            margin-right: 8px;
        }
        
        .logo a {
            text-decoration: none;
            color: inherit;
        }
        
        .search-box {
            width: 400px;
            position: relative;
        }
        
        .search-box input {
            width: 100%;
            padding: 8px 45px 8px 15px;
            border: 1px solid #ebebeb;
            border-radius: 20px;
            background-color: #f6f6f6;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .search-box input:focus {
            outline: none;
            background-color: #fff;
            border-color: #0084ff;
        }
        
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #8590a6;
            cursor: pointer;
        }
        
        .nav-right {
            display: flex;
            align-items: center;
        }
        
        .nav-right a {
            margin-left: 25px;
            color: #8590a6;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .nav-right a:hover {
            color: #0084ff;
        }
        
        .ask-btn {
            background-color: #0084ff;
            color: white !important;
            padding: 8px 16px;
            border-radius: 4px;
            margin-left: 20px !important;
        }
        
        .ask-btn:hover {
            background-color: #0077e6;
        }
        
        /* 主体布局 */
        .main-content {
            display: flex;
            padding: 20px 40px 40px;
        }
        
        /* 左侧导航 */
        .left-nav {
            width: 200px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .nav-item {
            padding: 12px 15px;
            border-radius: 4px;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            color: #444;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .nav-item:hover, .nav-item.active {
            background-color: #f6f6f6;
            color: #0084ff;
        }
        
        .nav-item i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .nav-item span {
            font-size: 15px;
        }
        
        /* 问答详情页样式 */
        .question-detail {
            flex: 1;
            max-width: 800px;
        }
        
        .detail-header {
            margin-bottom: 30px;
        }
        
        .detail-title {
            font-size: 24px;
            font-weight: 600;
            color: #121212;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .detail-meta {
            display: flex;
            align-items: center;
            color: #8590a6;
            font-size: 14px;
        }
        
        .detail-meta span {
            margin-right: 20px;
        }
        
        .detail-content {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .detail-content p {
            margin-bottom: 20px;
        }
        
        .detail-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .detail-content li {
            margin-bottom: 8px;
        }
        
        .detail-actions {
            display: flex;
            margin-bottom: 30px;
        }
        
        .detail-action {
            display: flex;
            align-items: center;
            margin-right: 20px;
            padding: 8px 15px;
            border-radius: 4px;
            background-color: #f6f6f6;
            color: #444;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .detail-action:hover {
            background-color: #e8e8e8;
        }
        
        .detail-action i {
            margin-right: 8px;
        }
        
        .answers-header {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .filter-tabs {
            display: flex;
        }
        
        .filter-tab {
            padding: 6px 12px;
            margin-left: 10px;
            font-size: 14px;
            color: #8590a6;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-tab.active, .filter-tab:hover {
            background-color: #f6f6f6;
            color: #0084ff;
        }
        
        .answer-card {
            padding: 25px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .answer-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .answer-user {
            display: flex;
            align-items: center;
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f0f0f0;
            margin-right: 10px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8590a6;
        }
        
        .answer-user-info {
            margin-left: 10px;
        }
        
        .answer-user-name {
            font-weight: 600;
            margin-bottom: 2px;
        }
        
        .answer-user-title {
            font-size: 13px;
            color: #8590a6;
        }
        
        .answer-time {
            margin-left: auto;
            color: #8590a6;
            font-size: 14px;
        }
        
        .answer-content {
            font-size: 15px;
            line-height: 1.7;
            color: #444;
            margin-bottom: 15px;
        }
        
        .answer-actions {
            display: flex;
            align-items: center;
            color: #8590a6;
            font-size: 14px;
        }
        
        .answer-action {
            display: flex;
            align-items: center;
            margin-right: 20px;
            cursor: pointer;
        }
        
        .answer-action:hover {
            color: #0084ff;
        }
        
        .answer-action i {
            margin-right: 5px;
        }
        
        .vote-count {
            font-weight: 600;
            margin: 0 5px;
        }
        
        /* 右侧侧边栏 */
        .right-sidebar {
            width: 300px;
            margin-left: 20px;
            flex-shrink: 0;
        }
        
        .sidebar-section {
            background-color: #fff;
            border-radius: 4px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid #f0f0f0;
        }
        
        .sidebar-title {
            font-size: 16px;
            font-weight: 600;
            color: #121212;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .related-question {
            padding: 12px 0;
            border-bottom: 1px solid #f9f9f9;
        }
        
        .related-question:last-child {
            border-bottom: none;
        }
        
        .related-question a {
            font-size: 14px;
            color: #121212;
            text-decoration: none;
            line-height: 1.4;
            display: block;
        }
        
        .related-question a:hover {
            color: #0084ff;
        }
        
        .related-question p {
            font-size: 12px;
            color: #8590a6;
            margin-top: 5px;
        }
        
        .hot-topic {
            padding: 10px 0;
            border-bottom: 1px solid #f9f9f9;
            display: flex;
            align-items: center;
        }
        
        .hot-topic:last-child {
            border-bottom: none;
        }
        
        .topic-rank {
            font-size: 18px;
            font-weight: 600;
            color: #f1403c;
            margin-right: 10px;
            min-width: 25px;
        }
        
        .topic-info h4 {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 4px;
            line-height: 1.4;
        }
        
        .topic-info p {
            font-size: 12px;
            color: #8590a6;
        }
        
        .user-card {
            display: flex;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #f9f9f9;
        }
        
        .user-card:last-child {
            border-bottom: none;
        }
        
        .user-info h4 {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 4px;
        }
        
        .user-info p {
            font-size: 12px;
            color: #8590a6;
        }
        
        .follow-btn {
            background-color: #0084ff;
            color: white;
            border: none;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            margin-left: auto;
        }
        
        .follow-btn:hover {
            background-color: #0077e6;
        }
        
        .follow-btn.followed {
            background-color: #8590a6;
        }
        
        /* 页脚 */
        footer {
            padding: 30px 40px;
            border-top: 1px solid #f0f0f0;
            background-color: #fafafa;
            color: #8590a6;
            font-size: 14px;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: #8590a6;
            text-decoration: none;
            margin-right: 20px;
            margin-bottom: 10px;
        }
        
        .footer-links a:hover {
            color: #0084ff;
        }
        
        .copyright {
            font-size: 13px;
        }
        
        /* 分页器 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .pagination a {
            color: #0084ff;
            padding: 8px 14px;
            margin: 0 4px;
            text-decoration: none;
            border-radius: 4px;
            border: 1px solid #f0f0f0;
        }
        
        .pagination a.active, .pagination a:hover {
            background-color: #0084ff;
            color: white;
            border-color: #0084ff;
        }
        
        .back-to-home {
            display: inline-block;
            margin-top: 20px;
            color: #0084ff;
            text-decoration: none;
        }
        
        .back-to-home:hover {
            text-decoration: underline;
        }
        
        /* 响应式调整 */
        @media (max-width: 1520px) {
            .container {
                width: 100%;
                padding: 0 10px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <!-- 头部导航 -->
        <header>
            <div class="logo">
                <i class="fas fa-question-circle"></i>
                <a href="index.html"><span>智知问答</span></a>
            </div>
            
            <div class="search-box">
                <input type="text" placeholder="搜索问题、话题或用户">
                <button><i class="fas fa-search"></i></button>
            </div>
            
            <div class="nav-right">
                <a href="index.html"><i class="fas fa-home"></i> 首页</a>
                <a href="#"><i class="fas fa-bell"></i> 通知</a>
                <a href="#"><i class="fas fa-envelope"></i> 私信</a>
                <a href="#"><i class="fas fa-user"></i> 我的</a>
                <a href="#" class="ask-btn"><i class="fas fa-pen"></i> 提问</a>
            </div>
        </header>
        
        <!-- 主体内容 -->
        <div class="main-content">
            <!-- 左侧导航 -->
            <div class="left-nav">
                <a href="/" class="nav-item">
                    <i class="fas fa-home"></i>
                    <span>首页</span>
                </a>
                <a href="#" class="nav-item">
                    <i class="fas fa-fire"></i>
                    <span>热门</span>
                </a>
                <a href="#" class="nav-item">
                    <i class="fas fa-compass"></i>
                    <span>发现</span>
                </a>
                <a href="#" class="nav-item">
                    <i class="fas fa-video"></i>
                    <span>视频</span>
                </a>
                <a href="#" class="nav-item">
                    <i class="fas fa-book"></i>
                    <span>专栏</span>
                </a>
                <a href="#" class="nav-item">
                    <i class="fas fa-tag"></i>
                    <span>话题</span>
                </a>
                <a href="#" class="nav-item active">
                    <i class="fas fa-question-circle"></i>
                    <span>问题</span>
                </a>
                <a href="#" class="nav-item">
                    <i class="fas fa-users"></i>
                    <span>圈子</span>
                </a>
                <a href="#" class="nav-item">
                    <i class="fas fa-bookmark"></i>
                    <span>收藏</span>
                </a>
                <a href="#" class="nav-item">
                    <i class="fas fa-history"></i>
                    <span>历史</span>
                </a>
            </div>
            
            <!-- 问答详情区 -->
            <div class="question-detail">
                <div class="detail-header">
                    <h1 class="detail-title"><br />
<b>Warning</b>:  Undefined variable $row in <b>/www/wwwroot/88316.net/show.php</b> on line <b>895</b><br />
<br />
<b>Warning</b>:  Trying to access array offset on value of type null in <b>/www/wwwroot/88316.net/show.php</b> on line <b>895</b><br />
</h1>
                    <div class="detail-meta">
                        <span><i class="fas fa-eye"></i> 25.3万浏览</span>
                        <span><i class="fas fa-user"></i> 张明教授 • 医学AI研究员</span>
                        <span><i class="far fa-clock"></i> 发布于 2 天前</span>
                    </div>
                </div>
                
                <div class="detail-content">
                    <p><br />
<b>Warning</b>:  Undefined variable $row in <b>/www/wwwroot/88316.net/show.php</b> on line <b>904</b><br />
<br />
<b>Warning</b>:  Trying to access array offset on value of type null in <b>/www/wwwroot/88316.net/show.php</b> on line <b>904</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/www/wwwroot/88316.net/show.php</b> on line <b>904</b><br />
</p>
                </div>
                
                <div class="detail-actions">
                    <div class="detail-action" data-count="12000">
                        <i class="fas fa-thumbs-up"></i>
                        <span>1.2万赞同</span>
                    </div>
                    <div class="detail-action">
                        <i class="fas fa-thumbs-down"></i>
                        <span>不赞同</span>
                    </div>
                    <div class="detail-action">
                        <i class="fas fa-comment"></i>
                        <span>845条评论</span>
                    </div>
                    <div class="detail-action">
                        <i class="fas fa-star"></i>
                        <span>收藏</span>
                    </div>
                    <div class="detail-action">
                        <i class="fas fa-share"></i>
                        <span>分享</span>
                    </div>
                </div>
                
                <div class="answers-header">
                    <span>845 个回答</span>
                    <div class="filter-tabs">
                        <div class="filter-tab active">默认排序</div>
                        <div class="filter-tab">按时间</div>
                        <div class="filter-tab">按赞同数</div>
                    </div>
                </div>
                
                <div class="answer-card">
                    <div class="answer-header">
                        <div class="answer-user">
                            <div class="user-avatar">
                                <i class="fas fa-user-md"></i>
                            </div>
                            <div class="answer-user-info">
                                <div class="answer-user-name">李华博士</div>
                                <div class="answer-user-title">三甲医院主治医师 • 医学AI应用研究者</div>
                            </div>
                        </div>
                        <div class="answer-time">2天前</div>
                    </div>
                    
                    <div class="answer-content">
                        作为一名临床医生，我亲身体验了AI在医疗中的应用。在影像诊断方面，AI确实能提高工作效率，减少漏诊。但我们同时发现，AI在处理罕见病和不典型病例时仍有局限。医疗决策往往需要考虑患者的整体情况，包括心理状态、经济条件、家庭支持等非结构化信息，这是当前AI难以全面考量的。
                        <br><br>
                        我认为未来的方向是"增强智能"而非"人工智能"。AI不应替代医生，而应作为医生的辅助工具，提供决策支持。医生需要保持批判性思维，对AI的建议进行专业判断。同时，医学教育也需要加强医生在数据科学和AI伦理方面的培训。
                    </div>
                    
                    <div class="answer-actions">
                        <div class="answer-action" data-count="3245">
                            <i class="fas fa-thumbs-up"></i>
                            <span class="vote-count">3,245</span>
                            <span>赞同</span>
                        </div>
                        <div class="answer-action">
                            <i class="fas fa-thumbs-down"></i>
                            <span>反对</span>
                        </div>
                        <div class="answer-action">
                            <i class="fas fa-comment"></i>
                            <span>156</span>
                        </div>
                        <div class="answer-action">
                            <i class="fas fa-star"></i>
                            <span>收藏</span>
                        </div>
                    </div>
                </div>
                
                <div class="answer-card">
                    <div class="answer-header">
                        <div class="answer-user">
                            <div class="user-avatar">
                                <i class="fas fa-robot"></i>
                            </div>
                            <div class="answer-user-info">
                                <div class="answer-user-name">AI科技观察员</div>
                                <div class="answer-user-title">科技专栏作者 • 关注AI前沿发展</div>
                            </div>
                        </div>
                        <div class="answer-time">1天前</div>
                    </div>
                    
                    <div class="answer-content">
                        从技术发展角度看，AI在医疗领域的进步速度远超预期。五年内，我们可能会看到AI在部分诊断任务上达到专家水平。但完全取代医生还需要克服几个关键障碍：
                        <br><br>
                        1. 数据隐私和安全问题：医疗数据高度敏感，如何保证数据安全同时允许AI学习是一个难题。<br>
                        2. 算法可解释性：医生和患者需要理解AI的决策依据，而当前的深度学习模型往往是"黑箱"。<br>
                        3. 责任归属：如果AI诊断出错，责任由谁承担？是开发者、医院还是医生？<br>
                        4. 技术普及成本：先进AI系统需要大量计算资源，如何让基层医疗机构也能用上？<br>
                        <br>
                        短期内，AI最可能替代的是重复性高、标准化程度高的医疗任务，如影像初步筛查、常规检验分析等。而复杂的综合诊断和治疗方案制定仍需要人类医生的专业判断。
                    </div>
                    
                    <div class="answer-actions">
                        <div class="answer-action" data-count="2187">
                            <i class="fas fa-thumbs-up"></i>
                            <span class="vote-count">2,187</span>
                            <span>赞同</span>
                        </div>
                        <div class="answer-action">
                            <i class="fas fa-thumbs-down"></i>
                            <span>反对</span>
                        </div>
                        <div class="answer-action">
                            <i class="fas fa-comment"></i>
                            <span>89</span>
                        </div>
                        <div class="answer-action">
                            <i class="fas fa-star"></i>
                            <span>收藏</span>
                        </div>
                    </div>
                </div>
                
                <div class="answer-card">
                    <div class="answer-header">
                        <div class="answer-user">
                            <div class="user-avatar">
                                <i class="fas fa-user-graduate"></i>
                            </div>
                            <div class="answer-user-info">
                                <div class="answer-user-name">医学伦理研究员</div>
                                <div class="answer-user-title">医学伦理学者 • 健康政策顾问</div>
                            </div>
                        </div>
                        <div class="answer-time">12小时前</div>
                    </div>
                    
                    <div class="answer-content">
                        除了技术问题，AI在医疗中的应用还涉及深刻的伦理和社会问题。如何确保AI决策的公平性，避免算法偏见对特定群体的歧视？医疗AI的透明度问题如何解决，医生和患者是否有权了解决策依据？当AI系统出现错误诊断时，法律责任如何界定？这些都是亟待解决的重要问题。
                        <br><br>
                        我们需要建立完善的监管框架和伦理指南，确保AI在医疗领域的应用既推动技术进步，又保护患者权益。这需要技术专家、医生、伦理学家、政策制定者和患者代表等多方共同参与。
                    </div>
                    
                    <div class="answer-actions">
                        <div class="answer-action" data-count="1567">
                            <i class="fas fa-thumbs-up"></i>
                            <span class="vote-count">1,567</span>
                            <span>赞同</span>
                        </div>
                        <div class="answer-action">
                            <i class="fas fa-thumbs-down"></i>
                            <span>反对</span>
                        </div>
                        <div class="answer-action">
                            <i class="fas fa-comment"></i>
                            <span>73</span>
                        </div>
                        <div class="answer-action">
                            <i class="fas fa-star"></i>
                            <span>收藏</span>
                        </div>
                    </div>
                </div>
                
                <!-- 分页器 -->
                <div class="pagination">
                    <a href="index.html" class="back-to-home"><i class="fas fa-arrow-left"></i> 返回首页</a>
                    <a href="#" class="active">1</a>
                    <a href="#">2</a>
                    <a href="#">3</a>
                    <a href="#">4</a>
                    <a href="#">5</a>
                    <a href="#">下一页</a>
                </div>
            </div>
            
            <!-- 右侧边栏 -->
            <div class="right-sidebar">
                <div class="sidebar-section">
                    <div class="sidebar-title">相关问题</div>
                    <div class="related-question">
                        <a href="show.html">AI在医疗诊断中的准确率真的超过人类医生了吗？</a>
                        <p>1.5万浏览 • 324回答</p>
                    </div>
                    <div class="related-question">
                        <a href="show.html">未来十年，医疗行业会发生哪些革命性变化？</a>
                        <p>8,742浏览 • 156回答</p>
                    </div>
                    <div class="related-question">
                        <a href="show.html">AI医疗系统面临的最大技术挑战是什么？</a>
                        <p>6,321浏览 • 98回答</p>
                    </div>
                    <div class="related-question">
                        <a href="show.html">数字医疗和传统医疗如何有效结合？</a>
                        <p>5,487浏览 • 76回答</p>
                    </div>
                    <div class="related-question">
                        <a href="show.html">医疗AI的伦理边界在哪里？</a>
                        <p>4,932浏览 • 63回答</p>
                    </div>
                </div>
                
                <div class="sidebar-section">
                    <div class="sidebar-title">热门话题</div>
                    <div class="hot-topic">
                        <div class="topic-rank">1</div>
                        <div class="topic-info">
                            <h4>人工智能的未来发展</h4>
                            <p>1.2万讨论</p>
                        </div>
                    </div>
                    <div class="hot-topic">
                        <div class="topic-rank">2</div>
                        <div class="topic-info">
                            <h4>医疗科技创新</h4>
                            <p>9,856讨论</p>
                        </div>
                    </div>
                    <div class="hot-topic">
                        <div class="topic-rank">3</div>
                        <div class="topic-info">
                            <h4>医学伦理与法律</h4>
                            <p>7,432讨论</p>
                        </div>
                    </div>
                </div>
                
                <div class="sidebar-section">
                    <div class="sidebar-title">推荐关注</div>
                    <div class="user-card">
                        <div class="user-avatar">
                            <i class="fas fa-user-md"></i>
                        </div>
                        <div class="user-info">
                            <h4>陈医生</h4>
                            <p>三甲医院放射科主任 • 1.5万粉丝</p>
                        </div>
                        <button class="follow-btn">关注</button>
                    </div>
                    <div class="user-card">
                        <div class="user-avatar">
                            <i class="fas fa-flask"></i>
                        </div>
                        <div class="user-info">
                            <h4>AI医疗研究员</h4>
                            <p>医疗AI算法工程师 • 1.2万粉丝</p>
                        </div>
                        <button class="follow-btn">关注</button>
                    </div>
                </div>
            </div>
        </div>
        
        <!-- 页脚 -->
        <footer>
            <div class="footer-links">
                <a href="#">关于我们</a>
                <a href="#">帮助中心</a>
                <a href="#">联系我们</a>
                <a href="#">商务合作</a>
                <a href="#">加入我们</a>
                <a href="#">用户协议</a>
                <a href="#">隐私政策</a>
                <a href="#">社区规范</a>
                <a href="#">举报投诉</a>
                <a href="#">意见反馈</a>
            </div>
            <div class="copyright">
                © 2026 智知问答 版权所有 | 致力于提供高质量的知识分享平台
            </div>
        </footer>
    </div>
    
    <script>
        document.addEventListener('DOMContentLoaded', function() {
            // 为筛选标签添加点击事件
            const filterTabs = document.querySelectorAll('.filter-tab');
            filterTabs.forEach(tab => {
                tab.addEventListener('click', function() {
                    filterTabs.forEach(t => t.classList.remove('active'));
                    this.classList.add('active');
                });
            });
            
            // 为关注按钮添加点击事件
            const followButtons = document.querySelectorAll('.follow-btn');
            followButtons.forEach(button => {
                button.addEventListener('click', function() {
                    if (this.textContent === '关注') {
                        this.textContent = '已关注';
                        this.classList.add('followed');
                    } else {
                        this.textContent = '关注';
                        this.classList.remove('followed');
                    }
                });
            });
            
            // 为点赞按钮添加点击事件
            const likeButtons = document.querySelectorAll('.detail-action, .answer-action');
            likeButtons.forEach(button => {
                button.addEventListener('click', function(e) {
                    e.stopPropagation();
                    
                    if (this.querySelector('.fa-thumbs-up')) {
                        const countElement = this.querySelector('.vote-count') || this.querySelector('span');
                        if (countElement) {
                            let countText = countElement.textContent;
                            let count = 0;
                            
                            // 解析当前数量
                            if (countText.includes('万')) {
                                count = parseFloat(countText) * 10000;
                            } else {
                                count = parseInt(countText.replace(/[^0-9]/g, ''));
                            }
                            
                            // 增加数量
                            count += 1;
                            
                            // 更新显示
                            if (count >= 10000) {
                                countElement.textContent = (count / 10000).toFixed(1) + '万';
                            } else {
                                countElement.textContent = count.toLocaleString();
                            }
                            
                            // 如果是主回答的点赞按钮
                            if (this.classList.contains('detail-action')) {
                                const spanElement = this.querySelector('span:not(.vote-count)');
                                if (spanElement && spanElement.textContent.includes('万赞同')) {
                                    spanElement.textContent = (count / 10000).toFixed(1) + '万赞同';
                                } else if (spanElement) {
                                    spanElement.textContent = count.toLocaleString() + '赞同';
                                }
                            }
                            
                            // 添加动画效果
                            this.style.color = '#0084ff';
                            setTimeout(() => {
                                this.style.color = '';
                            }, 300);
                        }
                    }
                });
            });
            
            // 搜索功能
            const searchInput = document.querySelector('.search-box input');
            const searchButton = document.querySelector('.search-box button');
            
            searchButton.addEventListener('click', function() {
                performSearch();
            });
            
            searchInput.addEventListener('keypress', function(e) {
                if (e.key === 'Enter') {
                    performSearch();
                }
            });
            
            function performSearch() {
                const query = searchInput.value.trim();
                if (query) {
                    alert(`搜索关键词: "${query}"\n搜索结果将在新页面显示`);
                    // 实际项目中这里应该跳转到搜索结果页
                }
            }
            
            // 收藏功能
            const starButtons = document.querySelectorAll('.fa-star');
            starButtons.forEach(button => {
                button.parentElement.addEventListener('click', function(e) {
                    e.stopPropagation();
                    if (button.style.color === 'gold') {
                        button.style.color = '';
                        alert('已取消收藏');
                    } else {
                        button.style.color = 'gold';
                        alert('已收藏');
                    }
                });
            });
        });
    </script>
</body>
</html>