@charset "UTF-8";
.floor-plan-item {
  display: inline-block;
  width: 276px;
  position: relative;
}

.floor-plan-item:nth-of-type(n+5) {
  margin-top: 27px;
}

.floor-plan-item:nth-of-type(4n-1), .floor-plan-item:nth-of-type(4n-2), .floor-plan-item:nth-of-type(4n) {
  margin-left: 32px;
}

.floor-plan-item:hover .floor-plan-item__name,
.floor-plan-item:hover .floor-plan-item__info {
  color: #db091b;
}

.floor-plan-item--saling::before {
  content: "在售";
  width: 94px;
  line-height: 38px;
  font-size: 15px;
  color: #fff;
  text-align: center;
  background: #db091b;
  border-radius: 0 21px 21px 0;
  position: absolute;
  left: 0;
  top: 16px;
}

.floor-plan-item--awaiting::before {
  content: "即将开盘";
  width: 94px;
  line-height: 38px;
  font-size: 15px;
  color: #fff;
  text-align: center;
  background: #ef8a5d;
  border-radius: 0 21px 21px 0;
  position: absolute;
  left: 0;
  top: 16px;
}

.floor-plan-item--out::before {
  content: "售罄";
  width: 94px;
  line-height: 38px;
  font-size: 15px;
  color: #fff;
  text-align: center;
  background: #b2b2b2;
  border-radius: 0 21px 21px 0;
  position: absolute;
  left: 0;
  top: 16px;
}

.floor-plan-item__cover {
  width: 100%;
  height: 234px;
  overflow: hidden;
}

.floor-plan-item__cover img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-user-drag: none;
}

.floor-plan-item__name {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.floor-plan-item__info {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
