/* 1. 整体文字大改版 */
#article-container {
    font-size: 17.5px !important;    /* 字体变大，看得不费劲 */
    line-height: 1.8;               /* 增大行距，防止文字挤在一起 */
}

/* 2. 二级标题强化（带竖条背景） */
#article-container h2 {
    border-left: 6px solid #49b1f5; /* 左侧蓝色装饰条 */
    padding: 8px 15px;
    background: rgba(73, 177, 245, 0.07); /* 淡淡的背景色 */
    border-radius: 0 5px 5px 0;
    margin-top: 40px;
}

/* 3. 三级标题强化（带下划线） */
#article-container h3 {
    border-bottom: 2px solid #49b1f5;
    padding-bottom: 5px;
    display: inline-block;
    margin-top: 30px;
    color: #333;
}

/* 4. 重点文字突出 */
#article-container strong {
    color: #ff5722; /* 醒目的橙色，抓眼球 */
}
/* 图片悬停轻微放大特效 */
#article-container img {
  /* 1. 设置过渡动画：时长 0.3 秒，平滑进出 */
  transition: transform 0.3s ease-in-out !important;
}

#article-container img:hover {
  /* 2. 悬停时放大比例：1.03 代表放大 3%，非常克制且舒服 */
  transform: scale(1.03) !important;

  /* 3. 增加一点阴影，让图片有“浮起来”的立体感（可选） */
  box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;

  /* 4. 配合咱们刚开的 Fancybox，鼠标变成放大镜 */
  cursor: zoom-in;
}