/* 移动端响应式样式 */

/* 平板设备 (≤1024px) */
@media (max-width: 1024px) {
  /* 轮播图图片优化 */
  .slideshow img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }
  
  /* 推荐文章图片优化 */
  .post_style2 .thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  /* 最新发布文章图片优化 */
  .post_style4 .thumbnail img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  
  /* 右侧栏文章列表图片优化 */
  .widget_posts_thumbnail .thumbnail img {
    width: 80px;
    height: 60px;
    object-fit: cover;
  }
}

/* 移动端 (≤768px) */
@media (max-width: 768px) {
  /* 轮播图图片优化 */
  .slideshow img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  /* 推荐文章图片优化 */
  .post_style2 .thumbnail img {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }
  
  /* 文章列表图片优化 - 统一样式 */
  .content-list .thumbnail-wrap img,
  .widget_posts_thumbnail .thumbnail img {
    width: 80px;
    height: 60px;
    object-fit: cover;
  }
  
  /* 文章列表图片容器 */
  .content-list .thumbnail-wrap,
  .widget_posts_thumbnail .thumbnail {
    width: 80px;
    height: 60px;
    float: left;
    margin-right: 10px;
    overflow: hidden;
  }
  
  /* 文章列表内容区域 */
  .content-list .entry-wrap,
  .widget_posts_thumbnail .entry-wrap {
    margin-left: 0;
  }
  
  /* 文章列表概述区域 */
  .content-list .entry-overview {
    margin-left: 0;
  }
}