origin-direct-sales.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. page {
  2. background-color: #FCB2A8;
  3. }
  4. .bg {
  5. width: 100%;
  6. }
  7. .list {
  8. width: calc(100% - 48rpx);
  9. margin: 0 auto 20rpx;
  10. display: flex;
  11. flex-direction: column;
  12. background-color: #fff;
  13. border-radius: 16rpx;
  14. padding: 20rpx 18rpx;
  15. box-sizing: border-box;
  16. }
  17. .product-item {
  18. width: 100%;
  19. display: flex;
  20. align-items: center;
  21. margin-bottom: 20rpx;
  22. padding-right: 12rpx;
  23. box-sizing: border-box;
  24. }
  25. .product-item:last-child {
  26. margin-bottom: 0;
  27. }
  28. .product-item-img {
  29. width: 174rpx;
  30. height: 174rpx;
  31. border-radius: 12rpx;
  32. margin-right: 18rpx;
  33. }
  34. .product-item-column {
  35. flex: 1;
  36. height: 174rpx;
  37. display: flex;
  38. flex-direction: column;
  39. justify-content: space-between;
  40. }
  41. .product-name {
  42. width: 100%;
  43. display: -webkit-box;
  44. -webkit-line-clamp: 2;
  45. overflow: hidden;
  46. text-overflow: ellipsis;
  47. -webkit-box-orient: vertical;
  48. color: #202020;
  49. font-weight: bold;
  50. font-size: 26rpx;
  51. }
  52. .product-item-row-between {
  53. width: 100%;
  54. display: flex;
  55. justify-content: space-between;
  56. align-items: center;
  57. }
  58. .product-item-btn {
  59. width: 40rpx;
  60. height: 40rpx;
  61. line-height: 40rpx;
  62. border-radius: initial;
  63. }
  64. .product-item-btn image {
  65. width: 100%;
  66. height: 100%;
  67. }
  68. .product-item-price {
  69. color: #F2501A;
  70. font-size: 28rpx;
  71. }
  72. .product-item-price>text {
  73. color: #919191;
  74. font-size: 24rpx;
  75. margin-left: 6rpx;
  76. text-decoration: line-through;
  77. }