/* #100508 */
.info-wrap {
  width: 100%;
}

.info-wrap .list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.info-wrap .list .item-wrap {
  width: 370px;
  margin-right: 63px;
  margin-bottom: 63px;
}

.info-wrap .list .item-wrap:nth-child(3n) {
  margin-right: 0;
}

.info-wrap .list .item {
  display: block;
  width: 370px;
  height: 420px;
  margin: 0 auto;
  padding-top: 45px;
  transition: all .5s;
  background-color: #ffff;
  box-sizing: border-box;
  box-shadow: 0 3px 15px 0px #d6d7db;
}

.info-wrap .list .item:hover {
  opacity: 1;
  transform: translate(0, -16px);
  color: #fff;
  background-color: #b50005;
}

.info-wrap .list .item:hover > .item-title,
.info-wrap .list .item:hover > .item-introduce {
  color: #fff;
}

.info-wrap .list .item .item-icon {
  overflow: hidden;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto;
}

.info-wrap .list .item .item-icon img {
  width: 100%;
  height: 100%;
}

.info-wrap .list .item .item-title {
  margin: 34px 0 39px 0;
  color: #333;
  font-size: 24px;
  text-align: center;
}

.info-wrap .list .item .item-introduce {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  padding: 0 45px;
  line-height: 24px;
  color: #666;
  font-size: 14px;
}