The file /home/project/src/styles/index.css has been updated. Made 1 replacement.

Here's the result of running `cat -n` on a snippet of the edited file:
 139→  display: none;
 140→}
 141→
 142→/* 动画 */
 143→@keyframes fadeIn {
 144→  from {
 145→    opacity: 0;
 146→  }
 147→  to {
 148→    opacity: 1;
 149→  }
 150→}
 151→
 152→@keyframes fadeInScale {
 153→  from {
 154→    opacity: 0;
 155→    transform: scale(0.95);
 156→  }
 157→  to {
 158→    opacity: 1;
 159→    transform: scale(1);
 160→  }
 161→}
 162→
 163→@keyframes slideIn {
 164→  from {
 165→    opacity: 0;
 166→    transform: translateX(-10px);
 167→  }
 168→  to {
 169→    opacity: 1;
 170→    transform: translateX(0);
 171→  }
 172→}
 173→
 174→@keyframes pulse {
 175→  0%, 100% {
 176→    opacity: 1;
 177→  }