<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-2 {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.flex-3 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

.flex-4 {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
}

.no-data {
  margin: 50px 0;
  padding: 50px 0;
  width: 100%;
  height: auto;
  text-align: center;
}
.no-data img {
  width: 240px;
  height: 180px;
  margin-bottom: 30px;
}
.no-data p {
  font-size: 20px;
  color: #8e8483;
}

.list .goods-box {
  margin: 0 auto;
  padding-top: 30px;
  width: 1400px;
}
.list .goods-box .no-data {
  margin: 20px 0 0 0;
  padding: unset;
}
.list .goods-box .goods-list {
  width: 100%;
  flex-wrap: wrap;
}
.list .goods-box .goods-list .item {
  margin-right: 1.33%;
  width: 24%;
  height: 520px;
  box-sizing: border-box;
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 0 0 10px 10px;
}
.list .goods-box .goods-list .item:nth-child(4n) {
  margin-right: 0;
}
.list .goods-box .goods-list .item .item-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
.list .goods-box .goods-list .item .item-img .item-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.list .goods-box .goods-list .item .item-img .item-img-box .rate{
    position: absolute;
    z-index: 99;
    top:0;
    right:-2px;
}
.list .goods-box .goods-list .item .item-img .item-img-box .rate svg{
    color: rgb(230,69,69);
    width: 50px;
    height: 50px;
}
.list .goods-box .goods-list .item .item-img .item-img-box .rate p{
    color: #ffffff;
    position: absolute;
    width: 50px;
    height: 50px;
    text-align: center;
    top:0;
    left: 0;
}
.list .goods-box .goods-list .item .item-img .item-img-box img {
  width: 100%;
  height: 100%;
}
.list .goods-box .goods-list .item .item-title {
  margin: 10px 0;
  padding: 0 10px;
  font-size: 22px;
  line-height: 33px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分省略号 */
  word-break: break-all; /* break-all(允许在单词内换行。) */
  display: -webkit-box; /* 对象作为伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
  -webkit-line-clamp: 2; /* 显示的行数 */
  max-height: 66px; /* 设置最大高度，根据行高，要几行乘以几倍 */
  min-height: 66px; /* 防止样式变形 */
}
.list .goods-box .goods-list .item .item-price {
  margin: 20px 0 5px;
  text-align: center;
  color: #333;
  font-size: 25px;
  font-weight: bold;
  font-family: "W9";
}
.list .goods-box .goods-list .item .item-price .price-dollar {
  font-size: 18px;
  margin-right: -5px;
}
.list .goods-box .goods-list .item .item-score {
  margin: 10px 0 20px;
  width: 100%;
}
.list .goods-box .goods-list .item .item-score .svg-box svg {
  width: 25px;
  height: 25px;
}
.list .goods-box .goods-list .item .item-score .reviews {
  margin-top: 2px;
  margin-left: 10px;
  font-size: 15px;
  color: #202020;
}
.list .goods-box .goods-list .item .item-button {
  margin: 0 auto;
  width: 140px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
  text-align: center;
  color: #fff;
  background-color: #c5c9ca;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.list .goods-box .goods-list .item:hover {
  cursor: pointer;
}
.list .goods-box .goods-list .item:hover .item-button {
  background-color: #0060a4;
  color: #fff;
  transform: scale(1.25, 1.25);
  transition: all 0.2s ease-in-out;
}
.list .goods-box .pagination {
  margin: 30px auto;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.list .goods-box .pagination a, .list .goods-box .pagination span {
  margin: 0 5px;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: #606266;
  border-radius: 2px;
  background-size: 16px;
  background: center center no-repeat #f4f4f5;
}
.list .goods-box .pagination span {
  color: #fff;
  background-color: #2c72bf;
}
.list .goods-box .pagination a:hover {
  color: #fff;
  cursor: pointer;
  background-color: #2c72bf;
}

/*# sourceMappingURL=goodsList.css.map */
</pre></body></html>