/* 图片特效 */

.transform-box {
  height: 500px;
  overflow: hidden;
}

.transform-box > img {
  height: 500px;
}

.transform-height {
  height: 324px;
}

.transform {
  transition: all 2s ease;
}

.transform:hover {
  transform: scale(1.2);
  transform-origin: center;
}