buy.wxss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /* pages/buy/buy.wxss */
  2. @import "../../module/search/search.wxss"
  3. @import "../../module/caritem/caritem.wxss"
  4. .content{
  5. background-color:#F9F9F9;
  6. }
  7. .filter_space{
  8. height: 66rpx;
  9. }
  10. .filter_c{
  11. height: 88rpx;
  12. position: fixed;
  13. top:206rpx;
  14. width:100%;
  15. background: white;
  16. z-index:1;
  17. }
  18. .filter_nav{
  19. display: flex;
  20. }
  21. .filter_nav_item{
  22. flex: 1;
  23. text-align: center;
  24. height: 85rpx;
  25. border-bottom: 3rpx solid rgba(235, 235, 235, 1);
  26. transition: all 0.5s;
  27. }
  28. .filter_nav_item_active{
  29. border-bottom: 3rpx solid #FFE600;
  30. color:red;
  31. }
  32. .filter_nav_name{
  33. line-height: 80rpx;
  34. color: rgba(56, 55, 53, 1);
  35. font-size: 28rpx;
  36. display: inline;
  37. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  38. }
  39. .filter_nav_switch{
  40. transition: all 0.5s;
  41. height: 16rpx;
  42. width: 16rpx;
  43. }
  44. .filter_nav_item_active .filter_nav_switch{
  45. transform: rotate(180deg);
  46. }
  47. /****************排序条件***************/
  48. .sortby_c{
  49. overflow: hidden;
  50. transition: all 0.5s;
  51. background-color: rgba(56, 55, 53, 0.2);
  52. }
  53. .sortby_list{
  54. background: white;
  55. padding: 0rpx 38rpx;
  56. border-bottom: 2rpx solid #EBEBEB;
  57. }
  58. .sortby_item{
  59. border-top:1rpx solid rgba(235, 235, 235, 1);
  60. height: 78rpx;
  61. line-height: 78rpx;
  62. font-size:26rpx;
  63. background-color: white;
  64. color: rgba(56, 55, 53, 1);
  65. }
  66. .sortby_item:first-child{
  67. border-top:0rpx;
  68. }
  69. .sortby_active{
  70. width:26rpx;
  71. height: 26rpx;
  72. float:right;
  73. margin:30rpx 15rpx 0rpx;
  74. }
  75. /****************间隔区间***************/
  76. .price_c{
  77. overflow: hidden;
  78. transition: all 0.5s;
  79. background-color: rgba(56, 55, 53, 0.2);
  80. }
  81. .price_list{
  82. background: white;
  83. padding-left:38rpx;
  84. padding-bottom: 30rpx;
  85. display: flex;
  86. justify-content:flex-start;
  87. flex-wrap:wrap;
  88. border-bottom: 2rpx solid #EBEBEB;
  89. }
  90. .price_item{
  91. margin-top:20rpx;
  92. margin-right: 22rpx;
  93. border-radius: 6rpx;
  94. height: 80rpx;
  95. line-height: 80rpx;
  96. width: 210rpx;
  97. font-size:24rpx;
  98. background-color: white;
  99. color: rgba(56, 55, 53, 1);
  100. background-color: rgba(248, 248, 250, 1);
  101. border:1px solid rgba(248, 248, 250, 1);
  102. text-align: center;
  103. }
  104. .price_item_active{
  105. background: rgba(255, 230, 0, 0.1);
  106. border:1px solid #FFE600;
  107. }
  108. /**********筛选条件更多************/
  109. .more_c{
  110. position: fixed;
  111. top:0rpx;
  112. left:100%;
  113. width: 100%;
  114. height: 100%;
  115. background: white;
  116. z-index:101;
  117. transition: all 0.5s;
  118. }
  119. .brandw_title{
  120. background-color:#fede18;
  121. height:128rpx;
  122. position: absolute;
  123. top:0rpx;
  124. width: 100%;
  125. }
  126. .brandw_back{
  127. width:50rpx;
  128. height: 50rpx;
  129. position: absolute;
  130. top:100rpx;
  131. left:40rpx;
  132. }
  133. .brandw_back image{
  134. width:30rpx;
  135. height: 30rpx;
  136. margin: 10rpx;
  137. }
  138. .brandw_title_w{
  139. padding-top: 105rpx;
  140. font-size: 36rpx;
  141. height: 44rpx;
  142. line-height: 44rpx;
  143. text-align: center;
  144. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  145. }
  146. .wheres_more_i{
  147. margin-top:20rpx;
  148. }
  149. .more_n{
  150. height: 42rpx;
  151. line-height: 42rpx;
  152. color: rgba(56, 55, 53, 1);
  153. font-size: 28rpx;
  154. text-indent: 38rpx;
  155. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  156. }
  157. .more_list{
  158. background: white;
  159. padding-left:38rpx;
  160. padding-bottom: 30rpx;
  161. display: flex;
  162. justify-content:flex-start;
  163. flex-wrap:wrap;
  164. }
  165. .more_detail_i{
  166. margin-top:20rpx;
  167. margin-right: 22rpx;
  168. border-radius: 6rpx;
  169. height: 80rpx;
  170. line-height: 80rpx;
  171. width: 210rpx;
  172. font-size:24rpx;
  173. background-color: white;
  174. color: rgba(56, 55, 53, 1);
  175. background-color: rgba(248, 248, 250, 1);
  176. border:1px solid rgba(248, 248, 250, 1);
  177. text-align: center;
  178. display: flex;
  179. justify-content:center;
  180. align-items:center;
  181. }
  182. .more_detail_i image{
  183. height: 24rpx;
  184. width: 24rpx;
  185. margin-right: 5rpx;
  186. margin-top:-2rpx;
  187. }
  188. .more_detail_active{
  189. background: rgba(255, 230, 0, 0.1);
  190. border:1px solid #FFE600;
  191. }
  192. .more_bts{
  193. margin-top:48rpx;
  194. line-height: 98rpx;
  195. color: rgba(56, 55, 53, 1);
  196. font-size: 30rpx;
  197. text-align: center;
  198. display: flex;
  199. }
  200. .more_bt_reset{
  201. border-top:1px solid #EBEBEB;
  202. width: 240rpx;
  203. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  204. }
  205. .more_bt_check{
  206. flex: 1;
  207. border-top:1px solid #EBEBEB;
  208. background: linear-gradient(270deg,#FFD800,#FFE600);
  209. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  210. }
  211. /*******like*******/
  212. .nocar_w{
  213. margin-top:55rpx;
  214. height: 39rpx;
  215. line-height: 39rpx;
  216. color: rgba(56, 55, 53, 1);
  217. font-size: 26rpx;
  218. text-align: center;
  219. }
  220. .nocar_back{
  221. width:280rpx;
  222. height: 68rpx;
  223. border-radius: 6rpx;
  224. line-height: 68rpx;
  225. color: rgba(56, 55, 53, 1);
  226. font-size: 26rpx;
  227. text-align: center;
  228. background:linear-gradient(90deg,#FFD800,#FFE600);
  229. margin:40rpx auto;
  230. }
  231. .recommend{
  232. margin-top:20rpx;
  233. background: white;
  234. }
  235. .recommend_t{
  236. padding:64rpx 0rpx 60rpx;
  237. }
  238. .recommend_img{
  239. height: 32rpx;
  240. display: block;
  241. margin:0px auto;
  242. width:258rpx;
  243. }
  244. .like_cart_c{
  245. margin-top:-20rpx;
  246. }