/* 可添加到head.html或自定义样式表中 */
.transition-all {
    transition: all ease;
}
.duration-300 {
    transition-duration: 300ms;
}
.duration-500 {
    transition-duration: 500ms;
}
.hover\:translate-y-1:hover {
    transform: translateY(-1px);
}
.hover\:scale-105:hover {
    transform: scale(1.05);
}

/*新增缓动效果样式 */
/* 列表项入场动画 */
.list-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

/* 每个列表项依次延迟入场 */
.list-item:nth-child(1) { animation-delay: 0.1s; }
.list-item:nth-child(2) { animation-delay: 0.2s; }
.list-item:nth-child(3) { animation-delay: 0.3s; }
.list-item:nth-child(4) { animation-delay: 0.4s; }
.list-item:nth-child(5) { animation-delay: 0.5s; }

/* 入场动画定义 */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 内容交互效果增强 */
.list-content p {
    transition: all 0.4s ease;
}
.list-item:hover .list-content p {
    color: #495057; /* 稍微加深文字颜色 */
    transform: translateX(5px); /* 轻微右移 */
}
