searchRequest.wxss 2.2 KB
/* pages/searchRequest/searchRequest.wxss */
/* 搜索 */
/* 搜索框 */
page{
  background-color: #f1f2f4;
}

/* 商品列表 */
.moneyIcon{
  font-size: 23rpx;
  color: #FF1717;
  margin-right: -4rpx;
}
.moneyNum{
  font-size: 28rpx;
  font-weight: 500;
  color: #FF1717;
}
.productList{
  width: 750rpx;
  height:750rpx;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32rpx;
  color: rgb(206, 208, 209);
}
.listBox{
  display: flex;
  padding: 0 26rpx;
  box-sizing: border-box;
}
/* 每日精选*/
.pickContainer {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.pickContent {
  /* width: 343rpx; */
  display: flex;
  justify-content: space-between;
  margin-top: 24rpx;
  flex-wrap: wrap;
  border-radius: 16rpx;
  column-count: 2;
  column-gap: 20rpx;
  width: 700rpx;
}

.pickItem {
  width: 336rpx;
  box-sizing: border-box;
  background-color: #ffffff;
  margin-bottom: 16rpx;
  break-inside: avoid;
  border-radius: 16rpx;
}

.pickPic {
  width: 100%;
  height: 328rpx;
}

.pickPic image {
  width: 100%;
  height: 328rpx;
  border-radius: 16rpx 16rpx 0 0;
}

.pickTitle {
  margin-top: 16rpx;
  font-size: 28rpx;
  font-weight: 500;
  color: #323233;
  padding: 0 24rpx;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.pickDesc {
  font-size: 24rpx;
     font-weight: 400;
     text-align: left;
     color: #7d7e80;
     margin-top: 8rpx;
     box-sizing: border-box;
     width: 100%;
     padding: 0 24rpx;
     overflow: hidden;
     white-space: nowrap;
     text-overflow: ellipsis;
}

.pickCollect {
  font-size: 24rpx;
  font-weight: 400;
  text-align: left;
  color: #7d7e80;
  margin-top: 8rpx;
  padding-left: 8rpx;
  padding-right: 16rpx;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
.collectIcon {
  width: 100%;
  box-sizing: border-box;
  font-size: 24rpx;
  color: #ff4742;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24rpx;
  overflow: hidden;
}
.bottomHint {
  background-color: #f1f2f4;
  font-size: 24rpx;
  color: gray;
  display: flex;
  justify-content: center;
  padding-bottom:16rpx;
}