hookehuyr

style(NewsDetail): 为富文本视频添加响应式样式

确保新闻详情页中的视频元素能够自适应容器宽度,保持正确的宽高比,并添加垂直外边距以改善视觉间距。
......@@ -200,6 +200,14 @@ onMounted(async () => {
margin: 0.5rem auto;
}
/* 富文本视频样式 */
.content-text :deep(video) {
max-width: 100%;
height: auto;
display: block;
margin: 0.5rem auto;
}
/* 错误状态样式 */
.error-container {
background-color: #F2EBDB;
......