.master-list {
  margin-top: 20px;
  overflow: hidden;
}

.master-list .item {
  margin-bottom: 20px;
  float: left;
  margin-right: 20px;
  width: 264px;
  height: 327px;
  border-radius: 8px;
  overflow: hidden;
}

.master-list .item a {
  display: block;
  width: 100%;
  height: 100%;
}

.master-list .item .image {
  width: 100%;
  height: 100%;
  position: relative;
}

.master-list .item .image img {
  width: 100%;
  height: 100%;
}

.master-list .item .image .master-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(114, 192, 229, 0) 0%, #3e8cc6 100%);
  border-radius: 0px 0px 8px 8px;
  font-weight: 600;
  color: #ffffff;
  padding: 0 21px;
}

.master-list .item .image .master-info .name {
  font-size: 18px;
  line-height: 54px;
  text-align: center;
}

.master-list .item .image .master-info .profile {
  height: 0;
  transition: 0.2s;
}

.master-list .item:nth-child(5n) {
  margin-right: 0;
}

.master-list .item:hover .master-info {
  background: linear-gradient(180deg, rgba(114, 192, 229, 0.8) 0%, #3E8CC6 100%);
}

.master-list .item:hover .master-info .name {
  text-align: left;
  border-bottom: 1px solid #fff;
}

.master-list .item:hover .master-info .profile {
  height: auto;
  margin: 10px 0;
  display: block;
  line-height: 20px;
  text-align: justify;
}
