/* 卡片基础样式 */
.main-div {
  position: relative;
  padding-bottom: 10px;
  /* 为底部边框预留空间 */
  transition: all 0.3s ease;
}

/* 底部边框动画 */
.main-div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1890ff, #8859D9);
  /* 渐变色边框 */
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  /* 弹性动画 */
}

/* 悬停时触发效果 */
.main-div:hover::after {
  width: 100%;
}

/* 图片容器效果 */
.main-div-zu {
  transition: all 0.3s ease;
}

.main-div:hover .main-div-zu {
  transform: translateY(-3px);
}


/* 标题效果 */
.main-title {
  transition: all 0.3s ease;
}

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

/* 成立时间文本效果 */
.main-text {
  transition: all 0.3s ease;
  position: relative;
}

.main-div:hover .main-text {
  color: #8859D9;
  transform: translateX(5px);
}

.main-div:hover .main-text::before {
  opacity: 1;
  left: -12px;
}