index.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. height: 40rpx;
  34. line-height: 40rpx;
  35. font-size: 28rpx;
  36. font-weight: 600;
  37. color: #333333;
  38. }
  39. .type {
  40. height: 34rpx;
  41. line-height: 34rpx;
  42. font-size: 24rpx;
  43. color: #888888;
  44. margin-top: 8rpx;
  45. }
  46. .tags {
  47. display: flex;
  48. height: 32rpx;
  49. margin-top: 8rpx;
  50. width: 100%;
  51. >view {
  52. flex-shrink: 0;
  53. height: 32rpx;
  54. line-height: 32rpx;
  55. padding: 0 10rpx;
  56. font-size: 20rpx;
  57. color: #FFFFFF;
  58. margin-right: 8rpx;
  59. border-radius: 6rpx;
  60. }
  61. }
  62. .price {
  63. display: flex;
  64. width: 100%;
  65. height: 40rpx;
  66. align-items: center;
  67. justify-content: space-between;
  68. margin-top: 14rpx;
  69. view {
  70. font-size: 28rpx;
  71. font-family: PingFang SC-Medium, PingFang SC;
  72. font-weight: 550;
  73. color: #3874F6;
  74. }
  75. text {
  76. font-size: 24rpx;
  77. color: #888888;
  78. }
  79. }
  80. }
  81. }
  82. .line-1 {
  83. overflow: hidden;
  84. white-space: nowrap;
  85. text-overflow: ellipsis;
  86. word-break: break-all;
  87. }