index.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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: 40%;
  45. }
  46. .money {
  47. flex: 1;
  48. display: flex;
  49. font-size: 24rpx;
  50. font-family: PingFang SC-Medium, PingFang SC;
  51. color: #666666;
  52. margin-right: 20rpx;
  53. text {
  54. font-size: 28rpx;
  55. color: #FF3B30;
  56. font-weight: 600;
  57. }
  58. }
  59. }
  60. }
  61. .delete {
  62. position: absolute;
  63. width: 68rpx;
  64. height: 68rpx;
  65. line-height: 68rpx;
  66. right: -30rpx;
  67. top: -20rpx;
  68. text-align: center;
  69. font-size: 32rpx;
  70. color: #999;
  71. }
  72. }
  73. }
  74. .bot {
  75. width: 690rpx;
  76. border-top: 1rpx solid #ddd;
  77. margin: 0 auto;
  78. padding-bottom: 20rpx;
  79. .row {
  80. display: flex;
  81. width: 100%;
  82. margin-top: 20rpx;
  83. view {
  84. display: flex;
  85. height: 58rpx;
  86. align-items: center;
  87. .label {
  88. width: 144rpx;
  89. font-size: 24rpx;
  90. font-family: PingFang SC-Regular, PingFang SC;
  91. color: #666666;
  92. text-align-last: justify;
  93. }
  94. }
  95. .input {
  96. height: 58rpx;
  97. background: #FFFFFF;
  98. border-radius: 8rpx;
  99. border: 1rpx solid #CCCCCC;
  100. font-size: 28rpx;
  101. font-family: PingFang SC-Regular, PingFang SC;
  102. color: #333333;
  103. line-height: 44px;
  104. text-align: center;
  105. }
  106. }
  107. }
  108. }
  109. /* 文本行数限制 */
  110. .line-1 {
  111. overflow: hidden;
  112. white-space: nowrap;
  113. text-overflow: ellipsis;
  114. }