classification.css 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. page {
  2. background-color: #F2F2F2;
  3. }
  4. .wrap {
  5. width: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. padding-top: calc(268rpx + var(--status-bar-height));
  9. padding-bottom: 71rpx;
  10. }
  11. .header {
  12. width: 100%;
  13. height: calc(268rpx + var(--status-bar-height));
  14. position: fixed;
  15. top: 0;
  16. left: 0;
  17. z-index: 9999999;
  18. display: flex;
  19. flex-direction: column;
  20. box-sizing: border-box;
  21. padding: var(--status-bar-height) 0 0;
  22. background-color: #F2501A;
  23. }
  24. .header-bottom {
  25. width: 100%;
  26. height: 88rpx;
  27. display: flex;
  28. align-items: center;
  29. padding: 0 24rpx;
  30. box-sizing: border-box;
  31. }
  32. .search-bar {
  33. flex: 1;
  34. height: 68rpx;
  35. border: 1px solid #F2501A;
  36. background-color: #FFFFFF;
  37. box-sizing: border-box;
  38. border-radius: 100rpx;
  39. display: flex;
  40. align-items: center;
  41. }
  42. .search-input {
  43. flex: 1;
  44. font-size: 24rpx;
  45. }
  46. .search-btn {
  47. width: 120rpx;
  48. height: 60rpx;
  49. line-height: 60rpx;
  50. display: flex;
  51. justify-content: center;
  52. align-items: center;
  53. border-radius: 100rpx;
  54. background-color: #F2501A;
  55. margin-right: 2rpx;
  56. color: #F8F8F8;
  57. font-size: 24rpx;
  58. }
  59. .placeholder {
  60. color: #919191;
  61. }
  62. .search-icon {
  63. width: 26rpx;
  64. height: 26rpx;
  65. margin-left: 24rpx;
  66. margin-right: 12rpx;
  67. }
  68. .classification-menu-list {
  69. width: 100%;
  70. white-space: nowrap;
  71. background-color: #F2501A;
  72. padding: 0 24rpx;
  73. box-sizing: border-box;
  74. }
  75. .classification-menu-item {
  76. width: 20%;
  77. height: 180rpx;
  78. display: inline-block;
  79. color: #FFFFFF;
  80. font-size: 24rpx;
  81. }
  82. .classification-menu-item-box {
  83. width: 100%;
  84. height: 100%;
  85. display: flex;
  86. flex-direction: column;
  87. align-items: center;
  88. justify-content: center;
  89. }
  90. .classification-menu-item-img {
  91. height: 52rpx;
  92. margin-bottom: 13rpx;
  93. }
  94. ::-webkit-scrollbar {
  95. width: 0;
  96. height: 0;
  97. color: transparent;
  98. display: none;
  99. }
  100. .wrap-container {
  101. width: 100%;
  102. height: calc(100vh - 268rpx - 71rpx + var(--status-bar-height));
  103. display: flex;
  104. width: 100%;
  105. position: relative;
  106. top: 0;
  107. box-sizing: border-box;
  108. display: flex;
  109. padding: 30rpx 24rpx;
  110. }
  111. .nav_left {
  112. width: 160rpx;
  113. height: 100%;
  114. overflow: hidden;
  115. background: #FFFFFF;
  116. border-radius: 16rpx;
  117. }
  118. .child {
  119. height: 110rpx;
  120. font-size: 28rpx;
  121. color: #666666;
  122. position: relative;
  123. }
  124. .child-column {
  125. width: 100%;
  126. height: 100%;
  127. display: flex;
  128. flex-direction: column;
  129. align-items: center;
  130. justify-content: center;
  131. }
  132. .child-column text:first-child {
  133. color: #202020;
  134. font-size: 24rpx;
  135. font-weight: bold;
  136. }
  137. .child:first-child .child-column text:first-child {
  138. color: #202020;
  139. font-size: 28rpx;
  140. }
  141. .child-column text:last-child {
  142. color: #919191;
  143. font-size: 24rpx;
  144. margin-top: 2rpx;
  145. }
  146. .child.active .child-column text:first-child {
  147. color: #F2501A;
  148. }
  149. .child.active::after {
  150. content: "";
  151. width: 8rpx;
  152. height: 52rpx;
  153. background: linear-gradient(180deg, #F2501A, #FFDCC3);
  154. position: absolute;
  155. left: 0;
  156. top: 50%;
  157. transform: translate(0, -50%);
  158. border-radius: 0 198rpx 198rpx 0;
  159. }
  160. .nav_right {
  161. width: calc(100% - 190rpx);
  162. margin-left: 30rpx;
  163. height: 100%;
  164. display: flex;
  165. flex-direction: column;
  166. overflow: hidden;
  167. }
  168. .list {
  169. width: 100%;
  170. display: flex;
  171. flex-direction: column;
  172. }
  173. .item {
  174. width: 100%;
  175. display: flex;
  176. flex-direction: column;
  177. border-radius: 16rpx;
  178. background-color: #fff;
  179. margin-bottom: 30rpx;
  180. padding: 24rpx;
  181. box-sizing: border-box;
  182. }
  183. .item:last-child {
  184. margin-bottom: 0;
  185. }
  186. .item-top {
  187. width: 100%;
  188. color: #202020;
  189. font-size: 24rpx;
  190. font-weight: bold;
  191. margin-bottom: 25rpx;
  192. }
  193. .item-top>text {
  194. color: #919191;
  195. font-size: 24rpx;
  196. font-weight: normal;
  197. margin-left: 8rpx;
  198. }
  199. .sub-list {
  200. width: 100%;
  201. display: flex;
  202. flex-wrap: wrap;
  203. }
  204. .sub-item {
  205. width: 33.3333%;
  206. display: flex;
  207. flex-direction: column;
  208. align-items: center;
  209. color: #202020;
  210. font-size: 28rpx;
  211. }
  212. .sub-item image {
  213. max-width: 100%;
  214. height: 80rpx;
  215. margin-bottom: 12rpx;
  216. }
  217. .normal-box {
  218. width: 100%;
  219. display: flex;
  220. flex-direction: column;
  221. align-items: center;
  222. font-size: 28rpx;
  223. color: #999999;
  224. padding: 300rpx 0;
  225. }
  226. .normal-box image {
  227. width: 316rpx;
  228. margin-bottom: 20rpx;
  229. }
  230. .swiper-box {
  231. width: 100%;
  232. margin-bottom: 30rpx;
  233. }
  234. .swiper {
  235. width: 100%;
  236. height: 180rpx;
  237. border-radius: 16rpx;
  238. }
  239. .banner-img {
  240. width: 100%;
  241. height: 180rpx;
  242. border-radius: 16rpx;
  243. }
  244. .product-list {
  245. background-color: #FFFFFF;
  246. padding: 20rpx 14rpx;
  247. box-sizing: border-box;
  248. border-radius: 16rpx;
  249. width: calc(100% - 190rpx);
  250. margin-left: 30rpx;
  251. height: 100%;
  252. display: flex;
  253. flex-direction: column;
  254. overflow: hidden;
  255. }
  256. .product-item {
  257. width: 100%;
  258. display: flex;
  259. align-items: center;
  260. margin-bottom: 40rpx;
  261. }
  262. .product-item:last-child {
  263. margin-bottom: 0;
  264. }
  265. .product-item-img {
  266. width: 154rpx;
  267. height: 154rpx;
  268. border-radius: 16rpx;
  269. margin-right: 16rpx;
  270. }
  271. .product-item-sidebar {
  272. flex: 1;
  273. height: 150rpx;
  274. display: flex;
  275. flex-direction: column;
  276. justify-content: space-between;
  277. }
  278. .product-item-name {
  279. width: 100%;
  280. display: -webkit-box;
  281. -webkit-line-clamp: 2;
  282. overflow: hidden;
  283. text-overflow: ellipsis;
  284. -webkit-box-orient: vertical;
  285. color: #202020;
  286. font-weight: bold;
  287. font-size: 26rpx;
  288. }
  289. .product-item-column2-row-between {
  290. width: 100%;
  291. display: flex;
  292. justify-content: space-between;
  293. align-items: center;
  294. }
  295. .product-item-column2-btn {
  296. width: 40rpx;
  297. height: 40rpx;
  298. line-height: 40rpx;
  299. border-radius: initial;
  300. }
  301. .product-item-column2-btn image {
  302. width: 100%;
  303. height: 100%;
  304. }
  305. .product-item-column2-price {
  306. color: #F2501A;
  307. font-size: 28rpx;
  308. }
  309. .product-item-column2-price>text {
  310. color: #919191;
  311. font-size: 24rpx;
  312. margin-left: 6rpx;
  313. }