fatigued.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding: 20rpx 24rpx;
  6. box-sizing: border-box;
  7. }
  8. .label {
  9. width: 100%;
  10. color: #000000;
  11. font-size: 32rpx;
  12. font-weight: bold;
  13. position: relative;
  14. box-sizing: border-box;
  15. padding: 0 26rpx;
  16. margin-bottom: 18rpx;
  17. }
  18. .label::after {
  19. content: "";
  20. width: 6rpx;
  21. height: 34rpx;
  22. background-color: #F2501A;
  23. border-radius: 4rpx;
  24. position: absolute;
  25. left: 0;
  26. top: 50%;
  27. transform: translate(0, -50%);
  28. }
  29. .module {
  30. width: 100%;
  31. background-color: #fff;
  32. border-radius: 16rpx;
  33. }
  34. .msg {
  35. width: 100%;
  36. color: #777777;
  37. font-size: 28rpx;
  38. padding: 20rpx;
  39. box-sizing: border-box;
  40. }
  41. .product-list {
  42. width: 100%;
  43. display: flex;
  44. flex-direction: column;
  45. overflow: hidden;
  46. padding: 20rpx 24rpx 36rpx;
  47. box-sizing: border-box;
  48. border-top: 1px solid #F9F6F6;
  49. }
  50. .product-item {
  51. width: 100%;
  52. display: flex;
  53. align-items: center;
  54. margin-bottom: 55rpx;
  55. }
  56. .product-item:last-child {
  57. margin-bottom: 0;
  58. }
  59. .product-item-column-img {
  60. width: 220rpx;
  61. height: 180rpx;
  62. border-radius: 16rpx;
  63. margin-right: 24rpx;
  64. }
  65. .product-item-sidebar {
  66. flex: 1;
  67. height: 160rpx;
  68. display: flex;
  69. flex-direction: column;
  70. justify-content: space-between;
  71. }
  72. .product-item-sidebar-top {
  73. width: 100%;
  74. display: -webkit-box;
  75. -webkit-line-clamp: 2;
  76. overflow: hidden;
  77. text-overflow: ellipsis;
  78. -webkit-box-orient: vertical;
  79. }
  80. .product-tag-img {
  81. width: 106rpx;
  82. margin-right: 6rpx;
  83. vertical-align: middle;
  84. }
  85. .product-item-column-name {
  86. color: #202020;
  87. font-size: 28rpx;
  88. font-weight: bold;
  89. }
  90. .product-item-row-between {
  91. width: 100%;
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. }
  96. .look-num {
  97. color: #919191;
  98. font-size: 26rpx;
  99. }
  100. .collect-btn {
  101. display: flex;
  102. align-items: center;
  103. font-size: 26rpx;
  104. color: #919191;
  105. background-color: initial;
  106. border-radius: initial;
  107. }
  108. .collect-btn>image {
  109. width: 35rpx;
  110. margin-right: 8rpx;
  111. }