goodsgroup.wxss 896 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .name {
  2. overflow: hidden;
  3. text-overflow: ellipsis;
  4. display: -webkit-box;
  5. -webkit-box-orient: vertical;
  6. -webkit-line-clamp: 2;
  7. }
  8. .img {
  9. width: 100%;
  10. height: 100%;
  11. }
  12. .detail {
  13. display: flex;
  14. flex-direction: column;
  15. justify-content: space-evenly;
  16. height: 100%;
  17. padding-left: 14rpx;
  18. }
  19. .goods-one {
  20. display: flex;
  21. }
  22. .goods-one .bottom {
  23. display: flex;
  24. align-items: center;
  25. justify-content: space-between;
  26. }
  27. .goods-one .bottom .pay-title {
  28. width: 100rpx;
  29. border-radius: 12rpx;
  30. padding: 4rpx 20rpx;
  31. text-align: center;
  32. height: 48rpx;
  33. line-height: 40rpx;
  34. font-size: 28rpx;
  35. font-weight: 600;
  36. }
  37. .goods-two {
  38. display: flex;
  39. flex-direction: column;
  40. align-items: center;
  41. }
  42. .goods-two .goods_img {
  43. text-align: center;
  44. }
  45. .tags {
  46. display: flex;
  47. flex-wrap: wrap;
  48. }
  49. .tags .tag {
  50. margin-right: 4rpx;
  51. }
  52. .price {
  53. display: flex;
  54. align-items: center;
  55. }