/* allGiftList.wxss */
page{
  background-color: #f4f4f4;
}
/*  列表 */
.list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
   padding: 20rpx 10rpx 0;
  background-color: #fff;
  border-right: 1rpx solid #eaeced;
}
.list_item_wrap{
  margin: 10rpx 10rpx 30rpx;
}
.list_item{
  width: 340rpx;
  height:340rpx;
  border:1px solid #e5e3e3;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.full_image{
  display: block;
  width: 340rpx;
  height:340rpx;
}
.full_img_footer{
  width:100%;
  height:50rpx;
  font-size: 24rpx;
  line-height: 50rpx;
  color:#fff;
  text-align: center;
  background-color: rgba(0,0,0,0.6);
  position: absolute;
  left: 0;
  bottom: 0;
}
.full_title{
  width: 340rpx;
  font-size: 30rpx;
  line-height: 70rpx;
  color:#444;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.full_price{
  font: italic  bold  36rpx "Microsoft Yahei";
  color:#ff8401;
}
.full_price_unit{
  font: normal  normal  26rpx Arial;
}