goodsgroup.less 920 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. .bottom {
  22. display: flex;
  23. align-items: center;
  24. justify-content: space-between;
  25. .pay-title {
  26. width: 100rpx;
  27. border-radius: 12rpx;
  28. padding: 4rpx 20rpx;
  29. text-align: center;
  30. height: 48rpx;
  31. line-height: 40rpx;
  32. font-size: 28rpx;
  33. font-weight: 600;
  34. }
  35. }
  36. }
  37. .goods-two {
  38. display: flex;
  39. flex-direction: column;
  40. align-items: center;
  41. .goods_img {
  42. text-align: center;
  43. }
  44. }
  45. .tags {
  46. display: flex;
  47. flex-wrap: wrap;
  48. .tag {
  49. margin-right: 4rpx;
  50. }
  51. }
  52. .price {
  53. display: flex;
  54. align-items: center;
  55. }