     /* 全局重置 */
     * {
         margin: 0;
         padding: 0;
         box-sizing: border-box;
         font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
     }

     body {
         background-color: #ffffff;
         color: #333333;
         font-size: 16px;
         line-height: 1.6;
     }

     /* 顶部导航栏 */
     .header {
         background-color: #d92121;
         /* 匹配截图红色主色调 */
         color: #ffffff;
         text-align: center;
         padding: 15px 0;
     }

     .header-title {
         font-size: 18px;
         font-weight: bold;
         margin-bottom: 8px;
     }

     .header-subtitle {
         font-size: 16px;
     }

     /* 内容容器 */
     .content {
         padding: 15px 12px;
     }

     /* 文章标题 */
     .article-title {
         font-size: 20px;
         font-weight: bold;
         line-height: 1.4;
         margin-bottom: 12px;
     }

     /* 发布日期 */
     .article-date {
         color: #999999;
         font-size: 14px;
         margin-bottom: 25px;
         display: block;
         padding-bottom: 20px;
         border-bottom: 1px solid #e0e0e0;
     }
     

     .line {
         padding: 0 10px;
         border-bottom: 1px solid #e0e0e0;

     }

     .content_text img{
         max-width: 100%;
     }

     /* 点赞收藏区域 */
     .action-bar {
         display: flex;
         justify-content: flex-end;
         align-items: center;
         margin-top: 20px;
         gap: 25px;
         /* 图标间距 */
         padding-bottom: 20px;
         padding-right: 20px;
     }

     .action-item {
         display: flex;
         align-items: center;
         gap: 5px;
         color: #666666;
         font-size: 14px;
         /* 增加点击光标样式，提示可点击 */
         cursor: pointer;
     }

     /* 图标样式 */
     .action-item img {
         width: 20px;
         height: 20px;
         /* 防止图片点击时出现高亮 */
         pointer-events: none;
     }

#BodyLabel video{
    max-width: 100%;
}