.person-card {
  background-color: #fff;
  border-bottom-right-radius: 0.5rem; /* 根据需要调整圆角大小 */
  border-bottom-left-radius: 0.5rem; /* 根据需要调整圆角大小 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 根据需要调整阴影 */
  /* display: flex;
  flex-direction: column; */
}

.person-card img {
  width: 100%; /* 图片宽度占满容器 */
  height: 12rem; /* 根据需要调整图片高度 */
  object-fit: cover; /* 保持图片比例并填充容器 */
  margin-bottom: 0.5rem; /* 图片与姓名之间的间距 */
}

.person-card h3 {
  font-size: 1.125rem; /* 18px, 根据需要调整 */
  font-weight: 600;
  color: #333; /* 根据需要调整颜色 */
  margin-bottom: 0.25rem; /* 姓名与职称之间的间距 */
}

.person-card p {
  font-size: 0.875rem; /* 14px, 根据需要调整 */
  color: #666; /* 根据需要调整颜色 */
  margin-bottom: 0.5rem; /* 职称与链接之间的间距 */
}

.person-card a {
  color: #007bff; /* 根据需要调整链接颜色 */
  text-decoration: none; /* 去除下划线 */
}

.person-card a:hover {
  text-decoration: underline; /* 鼠标悬停时显示下划线 */
}