/* 页面平滑过渡效果 */
.Xc_Pjax {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.Xc_Pjax.transition-out {
  opacity: 0;
  transform: translateY(20px);
}

.Xc_Pjax.transition-in {
  opacity: 1;
  transform: translateY(0);
}

/* 加载动画优化 */
#Loadanimation {
  transition: opacity 0.3s ease;
}

#Loadanimation.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* 页面切换时的内容过渡 */
body {
  overflow-x: hidden;
}

/* 文章列表项的悬停效果 */
.Xc_home_article-si {
  transition: all 0.35s ease;
}

.Xc_home_article-si:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 文章详情页的过渡效果 */
.Xc_reads {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

/* 侧边栏过渡效果 */
.Xc_aside {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.5s ease;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .Xc_Pjax {
    transition: all 0.3s ease;
  }
  
  .Xc_Pjax.transition-out {
    opacity: 0;
    transform: translateY(10px);
  }
  
  .Xc_home_article-si:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}