raise-five-internal-organs.css 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding-top: 84rpx;
  6. }
  7. .tab-list {
  8. width: 100%;
  9. height: 84rpx;
  10. display: flex;
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. z-index: 999;
  15. background-color: #F6F6F6;
  16. }
  17. .child {
  18. flex: 1;
  19. height: 84rpx;
  20. line-height: 84rpx;
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. font-size: 30rpx;
  25. color: #202020;
  26. position: relative;
  27. }
  28. .child.active {
  29. color: #F2501A;
  30. font-weight: bold;
  31. }
  32. .child.active::after {
  33. content: "";
  34. width: 72rpx;
  35. height: 2px;
  36. position: absolute;
  37. bottom: 0;
  38. left: 50%;
  39. transform: translate(-50%, 0);
  40. background-color: #F2501A;
  41. }
  42. .bg {
  43. width: 100%;
  44. }
  45. .top-module {
  46. width: 100%;
  47. border-radius: 32rpx 32rpx 0 0;
  48. background: linear-gradient(180deg, #FFFFFF, #F8F8F8, #FFFFFF);
  49. margin-top: -20rpx;
  50. z-index: 10;
  51. display: flex;
  52. flex-wrap: wrap;
  53. justify-content: space-between;
  54. padding: 20rpx 24rpx 4rpx;
  55. box-sizing: border-box;
  56. margin-bottom: 30rpx;
  57. }
  58. .top-module-item {
  59. width: calc(50% - 11rpx);
  60. height: fit-content;
  61. display: flex;
  62. flex-direction: column;
  63. background-color: #FFFFFF;
  64. border-radius: 16rpx;
  65. margin-bottom: 20rpx;
  66. padding: 0 22rpx 24rpx;
  67. box-sizing: border-box;
  68. }
  69. .top-module-item-name {
  70. width: 100%;
  71. height: 82rpx;
  72. display: flex;
  73. align-items: center;
  74. color: #202020;
  75. font-size: 32rpx;
  76. }
  77. .top-module-item-img {
  78. width: 100%;
  79. height: 234rpx;
  80. border-radius: 8rpx;
  81. }
  82. .product-item-column2 {
  83. width: 100%;
  84. height: 100%;
  85. border-radius: 12rpx;
  86. display: flex;
  87. flex-direction: column;
  88. }
  89. .product-item-column2-img {
  90. width: 100%;
  91. height: 340rpx;
  92. border-radius: 12rpx 12rpx 0 0;
  93. }
  94. .product-item-column2-bottom {
  95. width: 100%;
  96. height: calc(100% - 340rpx);
  97. display: flex;
  98. flex-direction: column;
  99. justify-content: space-between;
  100. padding: 16rpx;
  101. box-sizing: border-box;
  102. border-radius: 0 0 12rpx 12rpx;
  103. }
  104. .product-item-column-name2 {
  105. width: 100%;
  106. display: -webkit-box;
  107. -webkit-line-clamp: 2;
  108. overflow: hidden;
  109. text-overflow: ellipsis;
  110. -webkit-box-orient: vertical;
  111. color: #202020;
  112. font-weight: bold;
  113. font-size: 26rpx;
  114. }
  115. .product-item-column2-row-between {
  116. width: 100%;
  117. display: flex;
  118. justify-content: space-between;
  119. align-items: center;
  120. }
  121. .product-item-column2-btn {
  122. width: 40rpx;
  123. height: 40rpx;
  124. line-height: 40rpx;
  125. border-radius: initial;
  126. }
  127. .product-item-column2-btn image {
  128. width: 100%;
  129. height: 100%;
  130. }
  131. .product-item-column2-price {
  132. color: #F2501A;
  133. font-size: 28rpx;
  134. }
  135. .product-item-column2-price>text {
  136. color: #919191;
  137. font-size: 24rpx;
  138. margin-left: 6rpx;
  139. text-decoration: line-through;
  140. }
  141. .product-list {
  142. width: 100%;
  143. display: flex;
  144. flex-wrap: wrap;
  145. justify-content: space-between;
  146. padding: 20rpx 24rpx 0;
  147. box-sizing: border-box;
  148. }
  149. .product-item {
  150. width: calc(50% - 11rpx);
  151. height: 500rpx;
  152. border-radius: 12rpx;
  153. background-color: #fff;
  154. margin-bottom: 20rpx;
  155. }
  156. .bottom {
  157. width: 100%;
  158. display: flex;
  159. flex-direction: column;
  160. padding: 0 24rpx;
  161. box-sizing: border-box;
  162. margin-top: 4rpx;
  163. }
  164. .bottom-label {
  165. width: 100%;
  166. position: relative;
  167. color: #000000;
  168. font-size: 32rpx;
  169. font-weight: bold;
  170. padding: 16rpx 24rpx;
  171. box-sizing: border-box;
  172. }
  173. .bottom-label::after {
  174. content: "";
  175. width: 6rpx;
  176. height: 34rpx;
  177. background-color: #F2501A;
  178. position: absolute;
  179. left: 0;
  180. top: 50%;
  181. transform: translate(0, -50%);
  182. }
  183. .featured-list {
  184. width: 100%;
  185. display: flex;
  186. flex-direction: column;
  187. }
  188. .featured-item {
  189. width: 100%;
  190. padding: 0 24rpx;
  191. box-sizing: border-box;
  192. background-color: #fff;
  193. display: flex;
  194. flex-direction: column;
  195. border-radius: 16rpx;
  196. margin-bottom: 20rpx;
  197. }
  198. .featured-item-top {
  199. width: 100%;
  200. height: 82rpx;
  201. line-height: 82rpx;
  202. display: flex;
  203. justify-content: space-between;
  204. align-items: center;
  205. }
  206. .featured-name {
  207. width: 80%;
  208. color: #202020;
  209. font-size: 30rpx;
  210. font-weight: bold;
  211. display: -webkit-box;
  212. -webkit-line-clamp: 1;
  213. overflow: hidden;
  214. text-overflow: ellipsis;
  215. -webkit-box-orient: vertical;
  216. }
  217. .featured-msg {
  218. width: 100%;
  219. font-weight: bold;
  220. display: -webkit-box;
  221. -webkit-line-clamp: 1;
  222. overflow: hidden;
  223. text-overflow: ellipsis;
  224. -webkit-box-orient: vertical;
  225. color: #777777;
  226. font-size: 26rpx;
  227. margin-bottom: 20rpx;
  228. }
  229. .featured-img {
  230. width: 100%;
  231. height: 336rpx;
  232. border-radius: 16rpx;
  233. }
  234. .look-btn {
  235. width: 104rpx;
  236. height: 40rpx;
  237. line-height: 40rpx;
  238. background-color: #fff;
  239. border-radius: 100rpx;
  240. display: flex;
  241. align-items: center;
  242. justify-content: center;
  243. color: #919191;
  244. font-size: 24rpx;
  245. border: 1px solid #E6E6E6;
  246. box-sizing: border-box;
  247. }
  248. .featured-tag {
  249. width: 100%;
  250. height: 88rpx;
  251. line-height: 88rpx;
  252. display: -webkit-box;
  253. -webkit-line-clamp: 1;
  254. overflow: hidden;
  255. text-overflow: ellipsis;
  256. -webkit-box-orient: vertical;
  257. color: #202020;
  258. font-size: 26rpx;
  259. font-weight: bold;
  260. }