index.scss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .product-item {
  2. background-color: #fff;
  3. box-sizing: border-box;
  4. border-bottom: 1rpx solid #DDDDDD;
  5. margin-bottom: 20rpx;
  6. .product {
  7. padding: 20rpx 30rpx;
  8. box-sizing: border-box;
  9. .mian {
  10. position: relative;
  11. display: flex;
  12. width: 100%;
  13. box-sizing: border-box;
  14. .img {
  15. flex-shrink: 0;
  16. width: 112rpx;
  17. height: 112rpx;
  18. border-radius: 16rpx;
  19. margin-right: 20rpx;
  20. overflow: hidden;
  21. }
  22. .dec {
  23. flex: 1;
  24. width: 0;
  25. min-height: 128rpx;
  26. height: 100%;
  27. font-size: 24rpx;
  28. font-family: PingFang SC-Regular, PingFang SC;
  29. color: #999999;
  30. .title {
  31. width: 90%;
  32. height: 40rpx;
  33. font-size: 28rpx;
  34. font-weight: 600;
  35. color: #333333;
  36. }
  37. .subfield {
  38. display: flex;
  39. margin-top: 8rpx;
  40. height: 34rpx;
  41. line-height: 34rpx;
  42. text {
  43. display: inline-block;
  44. width: 48%;
  45. }
  46. }
  47. }
  48. .delete {
  49. position: absolute;
  50. width: 68rpx;
  51. height: 68rpx;
  52. line-height: 68rpx;
  53. right: -30rpx;
  54. top: -20rpx;
  55. text-align: center;
  56. font-size: 32rpx;
  57. color: #999;
  58. }
  59. }
  60. }
  61. }