index.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .product {
  2. display: flex;
  3. width: 100vw;
  4. padding: 20rpx 30rpx;
  5. background: #fff;
  6. border-bottom: 1rpx solid #ddd;
  7. box-sizing: border-box;
  8. overflow: hidden;
  9. .image-box {
  10. font-size: 0;
  11. width: 176rpx;
  12. height: 176rpx;
  13. border-radius: 16rpx;
  14. overflow: hidden;
  15. margin-right: 30rpx;
  16. flex-shrink: 0;
  17. .text {
  18. display: inline-block;
  19. width: 176rpx;
  20. height: 176rpx;
  21. line-height: 172rpx;
  22. font-size: 24rpx;
  23. text-align: center;
  24. color: #666;
  25. border: 1rpx solid #ddd;
  26. border-radius: 16rpx;
  27. box-sizing: border-box;
  28. }
  29. }
  30. .right-box {
  31. width: 480rpx;
  32. .title {
  33. width: 100%;
  34. height: 72rpx;
  35. font-size: 28rpx;
  36. font-weight: 600;
  37. color: #333333;
  38. overflow: hidden;
  39. text-overflow: ellipsis;
  40. display: -webkit-box;
  41. -webkit-line-clamp: 2;
  42. line-clamp: 2;
  43. -webkit-box-orient: vertical;
  44. }
  45. .type {
  46. height: 34rpx;
  47. line-height: 34rpx;
  48. font-size: 24rpx;
  49. color: #888888;
  50. margin-top: 8rpx;
  51. }
  52. .tags {
  53. display: flex;
  54. height: 32rpx;
  55. margin-top: 8rpx;
  56. width: 100%;
  57. >view {
  58. flex-shrink: 0;
  59. height: 32rpx;
  60. line-height: 32rpx;
  61. padding: 0 10rpx;
  62. font-size: 20rpx;
  63. color: #FFFFFF;
  64. margin-right: 8rpx;
  65. border-radius: 6rpx;
  66. }
  67. }
  68. .price {
  69. display: flex;
  70. width: 100%;
  71. height: 40rpx;
  72. align-items: center;
  73. justify-content: space-between;
  74. margin-top: 14rpx;
  75. view {
  76. font-size: 28rpx;
  77. font-family: PingFang SC-Medium, PingFang SC;
  78. font-weight: 550;
  79. color: #3874F6;
  80. }
  81. text {
  82. font-size: 24rpx;
  83. color: #888888;
  84. }
  85. }
  86. }
  87. }