/* 卡片基础样式 */
.main-div {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* 卡片悬浮效果（无边框） */
.main-div:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(24, 144, 255, 0.12);
  background: linear-gradient(to bottom, #f8faff 0%, #ffffff 100%);
}

/* 图片悬浮效果 */
.main-img {
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center;
}

.main-div:hover .main-img {
  transform: scale(1.06);
  filter: brightness(1.04) contrast(1.02);
}

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

.main-div:hover .main-title {
  color: #1890ff;
  /* transform: translateY(-2px); */
}

/* 成立时间标签效果 */
.main-tag {
  transition: all 0.3s ease;
  display: inline-block;
  /* background: rgba(0, 0, 0, 0.03); */
  border-radius: 4px;
  padding: 2px 8px;
}

.main-div:hover .main-tag {
  /* background: rgba(24, 144, 255, 0.08); */
  color: #1890ff;
  transform: translateY(-2px);
}

/* 添加光晕层（替代边框） */
.main-div::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(24, 144, 255, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.main-div:hover::after {
  opacity: 1;
}