hookehuyr

style(NewsDetail): 添加富文本图片样式

- 图片最大宽度100%,自适应高度
- 图片居中显示,上下间距0.5rem

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
......@@ -192,6 +192,14 @@ onMounted(async () => {
margin-bottom: 0;
}
/* 富文本图片样式 */
.content-text :deep(img) {
max-width: 100%;
height: auto;
display: block;
margin: 0.5rem auto;
}
/* 错误状态样式 */
.error-container {
background-color: #F2EBDB;
......