.product-list {
  margin: 20px 0;
}
.product-list .item {
  height: 130px;
  padding: 4px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 2px;
}
.product-list .item .head {
  position: relative;
  width: 200px;
  height: 100%;
  display: flex;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-list .item .head .overaly {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.2);
}
.product-list .item .head .tag {
  position: absolute;
  bottom: 5px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
}
.product-list .item .head .city {
  left: 5px;
}
.product-list .item .head .number {
  right: 5px;
}
.product-list .item .head img {
  width: 100%;
  height: auto;
}
.product-list .item .body {
  width: 500px;
  height: 100%;
  padding-right: 20px;
  margin-left: 20px;
  font-size: 14px;
  box-sizing: border-box;
}
.product-list .item .body .title {
  font-weight: normal;
  margin-bottom: 10px;
  color: #000;
  display: flex;
}
.product-list .item .body .title a {
  overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.product-list .item .body .info p {
  color: #666;
}
.product-list .item .foot {
  flex: 1;
  height: 100%;
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-list .item .foot .prices {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.product-list .item .foot .prices .price {
  width: 130px;
  display: flex;
  margin-right: 20px;
  font-size: 14px;
}
.product-list .item .foot .prices .price p,
.product-list .item .foot .prices .price label,
.product-list .item .foot .point div {
  color: #666;
}
.product-list .item .foot .prices .price span {
  margin: 0 2px;
  font-size: 18px;
  color: #666;
}
.product-list .item .foot .prices .price .orange,
.product-list .item .foot .tags .orange {
  color: orange;
}
.product-list .item .foot .point {
  display: flex;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}
.product-list .item .foot .point .price {
  width: 130px;
  margin-right: 20px;
}
.product-list .item .foot .point span {
  margin: 0 2px;
  font-size: 16px;
  color: #666;
}
.product-list .item .foot .point .stat {
  color: #f52828;
}
.product-list .item .foot .stat .tags {
  display: flex;
}
.product-list .item .foot .tags span {
  font-size: 12px;
  padding: 2px 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.product-list .item .foot .plans {
  font-size: 13px;
  display: flex;
  align-items: center;
} 
.product-list .item .foot .plans label {
  color: #666;
  flex-basis: 68px;
}
.product-list .item .foot .plans p {
  padding: 5px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.product-list .item .foot .plans span {
  margin-right: 1px;
  color: #666;
  padding: 2px 6px;
  margin-bottom: 4px;
  color: #888;
  border: 1px solid #eee;
  border-radius: 3px;
  word-break: keep-all;
} 