index.scss 1.6 KB

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