.merchant-today {
  width: 100%;
}

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

.merchant-today .list .item {
  width: 385px;
  height: 540px;
  margin-right: 40px;
  margin-bottom: 40px;
  transition: all .5s;
  background-color: #fff;
  user-select: none;
  cursor: pointer;
}

.merchant-today .list .item:hover {
  transform: translate(0, -10px);
}

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

.merchant-today .list .item .item-img {
  height: 230px;
}

.merchant-today .list .item .item-img img {
  width: 100%;
  height: 100%;
}

.merchant-today .list .item .item-title {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 64px;
  margin: 29px 0 33px 0;
  padding: 0 17px;
  line-height: 32px;
  color: #333;
  font-size: 20px;
}

.merchant-today .list .item .item-introduce {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 72px;
  margin-bottom: 35px;
  padding: 0 17px;
  line-height: 24px;
  color: #666;
  font-size: 14px;
}

.merchant-today .list .item .item-btn {
  display: block;
  width: 150px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  color: #666;
  border: 1px solid#e3e3e3;
  text-align: center;
}

.merchant-today .list .item .item-btn:hover {
  color: #b50005;
  border-color: #b50005;
}