index.scss 1.3 KB

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