goods_list.css 1.12 KB
@charset "UTF-8";
.goods-list-box {
  padding: 20px 20px;
  margin-top: -120px;
}
/* 猜你喜欢 */
.content-box {
  display: flex;
  flex-wrap: wrap;
  padding: 0 30upx;
}
.content-box .item {
  display: flex;
  flex-direction: column;
  width: 48%;
  padding-bottom: 40px;
}
.content-box .item:nth-child(2n+1) {
  margin-right: 4%;
}
.content-box .item .a-link {
  border-radius: 12px;
  background-color: #fafafa;
  margin: 10px 0;
  box-shadow: 0px 0px 10px rgba(148, 148, 148, 0.3);
}
.content-box .image-wrapper {
  width: 100%;
  height: 330upx;
  border-radius: 3px;
  overflow: hidden;
}
.content-box .image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 340px;
  max-height: 340px;
  opacity: 1;
  border-radius: 12px 12px 0 0;
}
.content-box .content {
  padding: 5px 15px;
}
.content-box .content .title {
  color: #666666;
  font-size: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.content-box .content .price {
  color: #FF725C;
  font-size: 34px;
}
.content-box .content .prices {
  color: #B4B4B4;
  font-size: 20px;
  text-decoration: line-through;
}