good-quality-work.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. .share-btn {
  2. width: fit-content;
  3. color: #FD6820;
  4. font-size: 28rpx;
  5. display: flex;
  6. align-items: center;
  7. }
  8. .share-btn image {
  9. width: 38rpx;
  10. }
  11. .header-btn-box {
  12. display: flex;
  13. justify-content: flex-end;
  14. padding: 0 20rpx;
  15. box-sizing: border-box;
  16. position: relative;
  17. }
  18. .swiper-box {
  19. width: 100%;
  20. margin-bottom: 30rpx;
  21. }
  22. .swiper {
  23. width: 100%;
  24. height: 300rpx;
  25. border-radius: 16rpx;
  26. }
  27. .swiper-item {
  28. width: 100%;
  29. height: 100%;
  30. box-sizing: border-box;
  31. color: #fff;
  32. padding: 0 10rpx;
  33. box-sizing: border-box;
  34. }
  35. .swiper-item-content {
  36. width: 100%;
  37. height: 100%;
  38. display: flex;
  39. align-items: center;
  40. background-color: #fff;
  41. border-radius: 16rpx;
  42. border-radius: 30rpx;
  43. padding: 24rpx 28rpx;
  44. box-sizing: border-box;
  45. }
  46. .bg {
  47. width: 100%;
  48. height: 556rpx;
  49. position: absolute;
  50. top: 0;
  51. left: 0;
  52. background-color: #F0754C;
  53. }
  54. .nav-list {
  55. width: 100%;
  56. white-space: nowrap;
  57. margin-bottom: 40rpx;
  58. padding: 0 24rpx;
  59. box-sizing: border-box;
  60. }
  61. .child {
  62. height: 60rpx;
  63. line-height: 60rpx;
  64. display: inline-block;
  65. color: #FFFFFF;
  66. font-size: 32rpx;
  67. position: relative;
  68. margin-right: 50rpx;
  69. }
  70. .child:last-child {
  71. margin-right: 0;
  72. }
  73. .child.selected::after {
  74. content: "";
  75. position: absolute;
  76. left: 50%;
  77. bottom: 0;
  78. transform: translate(-50%, 0);
  79. width: 54rpx;
  80. height: 6rpx;
  81. background-color: #FFFFFF;
  82. }
  83. .tabList {
  84. width: 100%;
  85. white-space: nowrap;
  86. }
  87. .type {
  88. height: 60rpx;
  89. line-height: 60rpx;
  90. border-radius: 10rpx;
  91. box-sizing: border-box;
  92. color: #A7A7A7;
  93. background-color: #fff;
  94. font-size: 30rpx;
  95. display: inline-block;
  96. margin-right: 22rpx;
  97. border-radius: 100rpx;
  98. }
  99. .type:last-child {
  100. margin-right: 0;
  101. }
  102. .active {
  103. background: rgb(242, 80, 26, 0.22);
  104. color: #F2501A;
  105. font-size: 32rpx;
  106. padding: 0 34rpx;
  107. }
  108. .container-wrap {
  109. width: 100%;
  110. display: flex;
  111. flex-direction: column;
  112. align-items: center;
  113. position: relative;
  114. }
  115. .bottom {
  116. width: calc(100% - 48rpx);
  117. padding: 0 20rpx;
  118. box-sizing: border-box;
  119. display: flex;
  120. flex-direction: column;
  121. border-radius: 16rpx;
  122. margin: 0 auto;
  123. background-color: #fff;
  124. }
  125. .bottom-label {
  126. width: 100%;
  127. color: #202020;
  128. font-weight: bold;
  129. font-size: 34rpx;
  130. padding: 20rpx 0;
  131. display: flex;
  132. align-items: center;
  133. }
  134. .bottom-label text {
  135. font-weight: normal;
  136. font-size: 30rpx;
  137. color: #A7A7A7;
  138. margin-left: 20rpx;
  139. }
  140. .list {
  141. width: 100%;
  142. margin: 0 auto 20rpx;
  143. display: flex;
  144. flex-direction: column;
  145. background-color: #fff;
  146. border-radius: 16rpx;
  147. padding: 24rpx 0;
  148. box-sizing: border-box;
  149. }
  150. .product-item {
  151. width: 100%;
  152. display: flex;
  153. align-items: center;
  154. margin-bottom: 20rpx;
  155. padding-right: 12rpx;
  156. box-sizing: border-box;
  157. }
  158. .product-item:last-child {
  159. margin-bottom: 0;
  160. }
  161. .product-item-img {
  162. width: 174rpx;
  163. height: 174rpx;
  164. border-radius: 12rpx;
  165. margin-right: 18rpx;
  166. }
  167. .product-item-column {
  168. flex: 1;
  169. height: 174rpx;
  170. display: flex;
  171. flex-direction: column;
  172. justify-content: space-between;
  173. }
  174. .product-name {
  175. width: 100%;
  176. display: -webkit-box;
  177. -webkit-line-clamp: 2;
  178. overflow: hidden;
  179. text-overflow: ellipsis;
  180. -webkit-box-orient: vertical;
  181. color: #202020;
  182. font-weight: bold;
  183. font-size: 26rpx;
  184. }
  185. .product-item-row-between {
  186. width: 100%;
  187. display: flex;
  188. justify-content: space-between;
  189. align-items: center;
  190. }
  191. .product-item-btn {
  192. width: 40rpx;
  193. height: 40rpx;
  194. line-height: 40rpx;
  195. border-radius: initial;
  196. }
  197. .product-item-btn image {
  198. width: 100%;
  199. height: 100%;
  200. }
  201. .product-item-price {
  202. color: #F2501A;
  203. font-size: 28rpx;
  204. }
  205. .product-item-price>text {
  206. color: #919191;
  207. font-size: 24rpx;
  208. margin-left: 6rpx;
  209. text-decoration: line-through;
  210. }