/* 卡片基础样式 */
.main-div {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

/* 卡片悬浮效果 */
.main-div:hover {
  transform: translateY(-3px);
  background: #f8faff;
  /* 浅蓝色背景 */
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.1);
}

/* 标题动画 */
.main-title {
  transition: all 0.3s ease;
  position: relative;
}

.main-div:hover .main-title {
  color: #1890ff;
  transform: translateX(5px);
}


/* 日期文字动画 */
.mr-30 {
  transition: all 0.3s ease;
}