classification.css 5.6 KB

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