/* 新闻详情页样式 */
.main { width: 1200px; margin: 0 auto; padding: 15px 0; overflow: hidden; }

/* 左侧内容区域 */
.con_left { float: left; width: 880px; background: #fff; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); min-height: 500px; }

/* 当前位置 */
#position { padding-bottom: 15px; border-bottom: 1px solid #eee; margin-bottom: 20px; color: #666; }
#position strong { font-weight: normal; }
#position a { color: #666; }
#position a:hover { color: #1890ff; }

/* 文章标题 */
#title { font-size: 24px; font-weight: bold; margin-bottom: 15px; line-height: 1.4; }

/* 文章信息 */
#info { color: #999; margin-bottom: 20px; font-size: 12px; }

/* 文章标签 */
#tag { 
    margin-bottom: 15px;
    font-size: 14px;
}
#tag span {
    color: #666;
}
#tag a {
    color: #1890ff;
    margin: 0 5px;
}
#tag a:after {
    content: ",";
    color: #666;
}
#tag a:last-child:after {
    content: "";
}
#tag a:hover {
    text-decoration: underline;
}

/* 文章摘要 */
#summary { background: #f8f8f8; padding: 15px; margin-bottom: 20px; color: #666; line-height: 1.6; }

/* 文章内容 */
#content { line-height: 1.8; color: #333; }
#content p { margin-bottom: 15px; }
#content img { max-width: 100%; height: auto; margin: 10px 0; }
#content h1, #content h2, #content h3 { margin: 20px 0 10px; }
#content a { color: #1890ff; }
#content a:hover { text-decoration: underline; }

/* 右侧区域 */
.con_right { float: right; width: 300px; }

/* 下载框 */
.layout_r { background: #fff; padding: 15px; margin-bottom: 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.layout_name { border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 15px; }
.layout_name h2 { font-size: 16px; font-weight: bold; }
.layout_name h2 a { color: #333; }
.layout_name h2 a:hover { color: #1890ff; }

/* 下载按钮 */
.download-box { line-height: 1.8; }
.download-box div { margin-bottom: 10px; }
.download-btn { 
    color: #1890ff;
    font-size: inherit;
    margin-left: 5px;
    cursor: pointer;
}
.download-btn:hover { 
    color: #40a9ff;
    text-decoration: underline;
}

/* 相关推荐 */
#recommend_news { padding: 0 15px; }
#recommend_news li { padding: 8px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#recommend_news a { color: #666; }
#recommend_news a:hover { color: #1890ff; }

/* 固定定位 */
.fixed { position: fixed; top: 15px; width: 300px !important; } 