allGiftList.wxss 1001 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* allGiftList.wxss */
  2. page{
  3. background-color: #f4f4f4;
  4. }
  5. /* 列表 */
  6. .list{
  7. display: flex;
  8. justify-content: space-between;
  9. flex-wrap: wrap;
  10. padding: 20rpx 10rpx 0;
  11. background-color: #fff;
  12. border-right: 1rpx solid #eaeced;
  13. }
  14. .list_item_wrap{
  15. margin: 10rpx 10rpx 30rpx;
  16. }
  17. .list_item{
  18. width: 340rpx;
  19. height:340rpx;
  20. border:1px solid #e5e3e3;
  21. border-radius: 4px;
  22. overflow: hidden;
  23. position: relative;
  24. }
  25. .full_image{
  26. display: block;
  27. width: 340rpx;
  28. height:340rpx;
  29. }
  30. .full_img_footer{
  31. width:100%;
  32. height:50rpx;
  33. font-size: 24rpx;
  34. line-height: 50rpx;
  35. color:#fff;
  36. text-align: center;
  37. background-color: rgba(0,0,0,0.6);
  38. position: absolute;
  39. left: 0;
  40. bottom: 0;
  41. }
  42. .full_title{
  43. width: 340rpx;
  44. font-size: 30rpx;
  45. line-height: 70rpx;
  46. color:#444;
  47. text-overflow: ellipsis;
  48. overflow: hidden;
  49. white-space: nowrap;
  50. }
  51. .full_price{
  52. font: italic bold 36rpx "Microsoft Yahei";
  53. color:#ff8401;
  54. }
  55. .full_price_unit{
  56. font: normal normal 26rpx Arial;
  57. }