buy.wxss 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. /* pages/buy/buy.wxss */
  2. @import "../../module/search/search.wxss"
  3. @import "../../module/caritem/caritem.wxss"
  4. .filter_space{
  5. height: 88rpx;
  6. }
  7. .filter_c{
  8. height: 88rpx;
  9. position: fixed;
  10. top:206rpx;
  11. width:100%;
  12. background: white;
  13. }
  14. .filter_nav{
  15. display: flex;
  16. }
  17. .filter_nav_item{
  18. flex: 1;
  19. text-align: center;
  20. height: 85rpx;
  21. border-bottom: 3rpx solid white;
  22. transition: all 0.5s;
  23. }
  24. .filter_nav_item_active{
  25. border-bottom: 3rpx solid #FFE600;
  26. color:red;
  27. }
  28. .filter_nav_name{
  29. line-height: 80rpx;
  30. color: rgba(56, 55, 53, 1);
  31. font-size: 28rpx;
  32. display: inline;
  33. }
  34. .filter_nav_switch{
  35. transition: all 0.5s;
  36. height: 16rpx;
  37. width: 16rpx;
  38. }
  39. .filter_nav_item_active .filter_nav_switch{
  40. transform: rotate(180deg);
  41. }
  42. /****************排序条件***************/
  43. .sortby_c{
  44. overflow: hidden;
  45. transition: all 0.5s;
  46. background-color: rgba(56, 55, 53, 0.2);
  47. }
  48. .sortby_list{
  49. background: white;
  50. padding: 0rpx 38rpx;
  51. }
  52. .sortby_item{
  53. border-top:1px solid rgba(235, 235, 235, 1);
  54. height: 78rpx;
  55. line-height: 78rpx;
  56. font-size:26rpx;
  57. background-color: white;
  58. color: rgba(56, 55, 53, 1);
  59. }
  60. .sortby_active{
  61. width:26rpx;
  62. height: 26rpx;
  63. float:right;
  64. margin:30rpx 15rpx 0rpx;
  65. }
  66. /****************间隔区间***************/
  67. .price_c{
  68. overflow: hidden;
  69. transition: all 0.5s;
  70. background-color: rgba(56, 55, 53, 0.2);
  71. }
  72. .price_list{
  73. background: white;
  74. padding-left:38rpx;
  75. padding-bottom: 30rpx;
  76. display: flex;
  77. justify-content:flex-start;
  78. flex-wrap:wrap;
  79. }
  80. .price_item{
  81. margin-top:20rpx;
  82. margin-right: 22rpx;
  83. border-radius: 6rpx;
  84. height: 80rpx;
  85. line-height: 80rpx;
  86. width: 210rpx;
  87. font-size:24rpx;
  88. background-color: white;
  89. color: rgba(56, 55, 53, 1);
  90. background-color: rgba(248, 248, 250, 1);
  91. border:1px solid rgba(248, 248, 250, 1);
  92. text-align: center;
  93. }
  94. .price_item_active{
  95. background: rgba(255, 230, 0, 0.1);
  96. border:1px solid #FFE600;
  97. }
  98. /****************品牌筛选条件***************/
  99. .brandw_c{
  100. position: fixed;
  101. top:0rpx;
  102. left:100%;
  103. width: 100%;
  104. height: 100%;
  105. background: white;
  106. z-index:101;
  107. transition: all 0.5s;
  108. }
  109. .brandw_title{
  110. background-color:#fede18;
  111. height:128rpx;
  112. position: fixed;
  113. z-index:100;
  114. top:0rpx;
  115. width: 100%;
  116. }
  117. .brandw_back{
  118. width:30rpx;
  119. height: 30rpx;
  120. position: absolute;
  121. top:70rpx;
  122. left:40rpx;
  123. }
  124. .brandw_title_w{
  125. padding-top: 60rpx;
  126. font-size: 36rpx;
  127. height: 44rpx;
  128. line-height: 44rpx;
  129. text-align: center;
  130. }
  131. .brandw_t_line{
  132. height: 58rpx;
  133. line-height: 58rpx;
  134. background-color: rgba(242, 242, 245, 1);
  135. color: rgba(56, 55, 53, 1);
  136. font-size: 22rpx;
  137. text-indent: 38rpx;
  138. }
  139. .brandw_hotlist{
  140. padding: 0rpx 40rpx;
  141. display: flex;
  142. background: white;
  143. flex-wrap: wrap;
  144. }
  145. .brandw_hotlist_item{
  146. width:134rpx;
  147. height: 159rpx;
  148. }
  149. .brandw_hotitem_img{
  150. width: 70rpx;
  151. height: 70rpx;
  152. background-size: 70rpx;
  153. background-repeat: no-repeat;
  154. background-position: center;
  155. margin:30rpx auto 0rpx;
  156. }
  157. .brandw_hotitem_name{
  158. height: 33rpx;
  159. line-height: 33rpx;
  160. color: rgba(56, 55, 53, 1);
  161. font-size: 22rpx;
  162. text-align: center;
  163. }
  164. .brandw_binitial{
  165. left: 0px;
  166. top: 562px;
  167. width: 750px;
  168. height: 44rpx;
  169. line-height: 44rpx;
  170. border: 1rpx solid rgba(235, 235, 235, 1);
  171. color:#FFE600;
  172. font-size: 24rpx;
  173. text-indent: 48rpx;
  174. }
  175. .brandw_bitem{
  176. left: 0px;
  177. line-height: 78rpx;
  178. height: 78rpx;
  179. border: 1rpx solid rgba(235, 235, 235, 1);
  180. }
  181. .brandw_bimg{
  182. height: 60rpx;
  183. width:60rpx;
  184. float:left;
  185. margin:10px 30rpx 0rpx 38rpx;
  186. background-repeat: no-repeat;
  187. background-size: 60rpx;
  188. background-position: center;
  189. }
  190. .brandw_bname{
  191. display: inline;
  192. margin-left:20rpx;
  193. color: rgba(56, 55, 53, 1);
  194. font-size: 26rpx;
  195. }
  196. .brand_serieslist{
  197. width:440rpx;
  198. background-color: white;
  199. position: fixed;
  200. bottom: 0rpx;
  201. right:770rpx;
  202. border-shadow:-1rpx 0rpx ;
  203. box-shadow: -2rpx 0rpx 10rpx -1rpx rgba(0, 0, 0, 0.16);
  204. }
  205. .series_lelong{
  206. height: 78rpx;
  207. line-height: 78rpx;
  208. }
  209. .series_lelong_bimg{
  210. height:60rpx;
  211. width:60rpx;
  212. float:left;
  213. margin:10px 20rpx 0rpx 28rpx;
  214. background-repeat:no-repeat;
  215. background-size:60rpx;
  216. background-position:center;
  217. }
  218. .series_lelong_name{
  219. color: rgba(56, 55, 53, 1);
  220. font-size: 26rpx;
  221. display:inline;
  222. }
  223. .car_series_t{
  224. text-indent: 28rpx;
  225. height: 44rpx;
  226. line-height: 44rpx;
  227. background-color: rgba(247, 247, 247, 1);
  228. color: rgba(56, 55, 53, 1);
  229. font-size: 20rpx;
  230. }
  231. .brand_series_i{
  232. height: 78rpx;
  233. line-height: 78rpx;
  234. }
  235. .brand_series_bimg{
  236. height:60rpx;
  237. width:60rpx;
  238. float:left;
  239. margin:9px 20rpx 0rpx 28rpx;
  240. background-repeat:no-repeat;
  241. background-size:60rpx;
  242. background-position:center;
  243. }
  244. .brand_series_name{
  245. color: rgba(56, 55, 53, 1);
  246. font-size: 22rpx;
  247. display:inline;
  248. }
  249. /*************首字母指示点*************/
  250. .brand_initail_c{
  251. position: fixed;
  252. bottom: 90rpx;
  253. right:5rpx;
  254. }
  255. .brand_initail_i{
  256. color:#383735;
  257. font-size: 22rpx;
  258. width: 35rpx;
  259. text-align: center;
  260. }
  261. .brand_initail_active{
  262. border-radius: 17rpx;
  263. background-color: #FFE600;
  264. }
  265. /**********筛选条件更多************/
  266. .more_c{
  267. position: fixed;
  268. top:0rpx;
  269. left:100%;
  270. width: 100%;
  271. height: 100%;
  272. background: white;
  273. z-index:101;
  274. transition: all 0.5s;
  275. }
  276. .wheres_more_i{
  277. margin-top:20rpx;
  278. }
  279. .more_n{
  280. height: 42rpx;
  281. line-height: 42rpx;
  282. color: rgba(56, 55, 53, 1);
  283. font-size: 28rpx;
  284. text-indent: 38rpx;
  285. font-family: NotoSansHans-Regular;
  286. }
  287. .more_list{
  288. background: white;
  289. padding-left:38rpx;
  290. padding-bottom: 30rpx;
  291. display: flex;
  292. justify-content:flex-start;
  293. flex-wrap:wrap;
  294. }
  295. .more_detail_i{
  296. margin-top:20rpx;
  297. margin-right: 22rpx;
  298. border-radius: 6rpx;
  299. height: 80rpx;
  300. line-height: 80rpx;
  301. width: 210rpx;
  302. font-size:24rpx;
  303. background-color: white;
  304. color: rgba(56, 55, 53, 1);
  305. background-color: rgba(248, 248, 250, 1);
  306. border:1px solid rgba(248, 248, 250, 1);
  307. text-align: center;
  308. }
  309. .more_detail_active{
  310. background: rgba(255, 230, 0, 0.1);
  311. border:1px solid #FFE600;
  312. }
  313. .more_bts{
  314. margin-top:48rpx;
  315. line-height: 98rpx;
  316. color: rgba(56, 55, 53, 1);
  317. font-size: 30rpx;
  318. text-align: center;
  319. display: flex;
  320. }
  321. .more_bt_reset{
  322. border-top:1px solid #EBEBEB;
  323. width: 240rpx;
  324. }
  325. .more_bt_check{
  326. flex: 1;
  327. border-top:1px solid #FFD800;
  328. background: linear-gradient(270deg,#FFD800,#FFE600);
  329. }
  330. /*******like*******/
  331. .nocar_w{
  332. margin-top:55rpx;
  333. height: 39rpx;
  334. line-height: 39rpx;
  335. color: rgba(56, 55, 53, 1);
  336. font-size: 26rpx;
  337. text-align: center;
  338. }
  339. .nocar_back{
  340. width:280rpx;
  341. height: 68rpx;
  342. border-radius: 6rpx;
  343. line-height: 68rpx;
  344. color: rgba(56, 55, 53, 1);
  345. font-size: 26rpx;
  346. text-align: center;
  347. background:linear-gradient(90deg,#FFD800,#FFE600);
  348. margin:40rpx auto;
  349. }
  350. .recommend{
  351. margin-top:20rpx;
  352. background: white;
  353. }
  354. .recommend_t{
  355. padding:64rpx 0rpx 60rpx;
  356. }
  357. .recommend_img{
  358. height: 32rpx;
  359. display: block;
  360. margin:0px auto;
  361. width:176rpx;
  362. }
  363. .like_cart_c{
  364. margin-top:-20rpx;
  365. }