goodsAllList.wxss 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /* kindSecondList.wxss */
  2. page{
  3. background-color: #fff;
  4. }
  5. .container{
  6. display: flex;
  7. max-height: 100vh;
  8. overflow: hidden;
  9. }
  10. ::-webkit-scrollbar{
  11. width: 0;
  12. height: 0;
  13. color: transparent;
  14. }
  15. ::-webkit-scrollbar-thumb{
  16. color:transparent;
  17. }
  18. ::-webkit-scrollbar-track-piece{
  19. color: transparent;
  20. }
  21. .header_nav_wrap{
  22. width: 100%;
  23. /* height:78rpx; */
  24. font-size: 24rpx;
  25. color: #7f7f7f;
  26. background-color: #fff;
  27. padding-top:4rpx;
  28. /* border-bottom: 1rpx solid #dfe6ea; */
  29. position: fixed;
  30. top: 0;
  31. left: 0;
  32. z-index: 10;
  33. }
  34. .header_nav{
  35. width:100%;
  36. }
  37. .each_nav_wrap{
  38. display: inline-block;
  39. width:33%;
  40. }
  41. .header_nav_title{
  42. display: inline-block;
  43. width: 100%;
  44. line-height: 78rpx;
  45. text-align: center;
  46. color:#a0b0b5;
  47. border-bottom: 3rpx solid #f0f0f0;
  48. box-sizing: border-box;
  49. }
  50. .nav_item_active{
  51. color:#b4a078;
  52. border-bottom:3rpx solid #b4a078;
  53. box-sizing: border-box;
  54. }
  55. .nav_item{
  56. display: inline-block;
  57. height: 78rpx;
  58. padding:0 3rpx 0 23rpx;
  59. box-sizing: border-box;
  60. }
  61. /* 标题 */
  62. .content_title_wrap{
  63. width:100%;
  64. height:50rpx;
  65. position:relative;
  66. margin:0 auto;
  67. padding: 15rpx 0;
  68. background-color: #fff;
  69. text-align: center;
  70. }
  71. .title_line{
  72. width:100%;
  73. height:2rpx;
  74. background-color: #c4cdd3;
  75. position:absolute;
  76. top:50%;
  77. left:0;
  78. margin-top:-1rpx;
  79. }
  80. .title_contemt{
  81. display: inline-block;
  82. padding:0 20rpx;
  83. height:50rpx;
  84. font-size: 32rpx;
  85. line-height: 50rpx;
  86. text-align: center;
  87. position: relative;
  88. margin-top:0;
  89. z-index: 2;
  90. color: #6f7478;
  91. background-color: #fff;
  92. }
  93. .tab-content{
  94. position:relative;
  95. }
  96. .scoll-h{
  97. height: 100vh;
  98. overflow: hidden;
  99. }
  100. /* 列表 */
  101. .list{
  102. display: flex;
  103. justify-content: space-between;
  104. flex-wrap: wrap;
  105. background-color: #fff;
  106. margin-top:146rpx;
  107. }
  108. .list_item_wrap{
  109. width: 50%;
  110. box-sizing: border-box;
  111. border-bottom:1px solid #f0f0f0;
  112. }
  113. .list_item_wrap:nth-child(odd){
  114. border-right:1px solid #f0f0f0;
  115. }
  116. .list_item_wrap:nth-child(even){
  117. border-left:1px solid #f0f0f0;
  118. }
  119. .list_item{
  120. width: 100%;
  121. /* height:340rpx; */
  122. overflow: hidden;
  123. position: relative;
  124. margin: 0 auto;
  125. }
  126. .full_image{
  127. display: block;
  128. width: 100%;
  129. }
  130. .full_img_footer{
  131. width:100%;
  132. height:50rpx;
  133. font-size: 24rpx;
  134. line-height: 50rpx;
  135. color:#fff;
  136. text-align: center;
  137. background-color: rgba(0,0,0,0.6);
  138. position: absolute;
  139. left: 0;
  140. bottom: 0;
  141. }
  142. .full_title{
  143. height:72rpx;
  144. font-size: 30rpx;
  145. line-height: 36rpx;
  146. color:#444;
  147. text-overflow: ellipsis;
  148. overflow: hidden;
  149. display: -webkit-box;
  150. -webkit-line-clamp: 2;
  151. -webkit-box-orient: vertical;
  152. padding: 23rpx 20rpx 0 32rpx ;
  153. }
  154. .full_price{
  155. font:bold 30rpx "Microsoft Yahei";
  156. color:#b4a078;
  157. padding: 34rpx 0 30rpx 32rpx;
  158. }
  159. .full_price_unit{
  160. font: normal normal 22rpx Arial;
  161. text-decoration: line-through;
  162. color:#c8c8c8;
  163. padding-left:26rpx;
  164. }
  165. /* 列表结束 */
  166. .loading{
  167. text-align: center;
  168. font-size: 30rpx;
  169. line-height: 60rpx;
  170. color: #c8c8c8;
  171. }
  172. /* 新导航 - 筛选 */
  173. .header_nav{
  174. background-color: #fff;
  175. }
  176. .condition_one{
  177. width: 100%;
  178. display:flex;
  179. flex-flow:row;
  180. justify-content:center;
  181. align-items:center;
  182. border-bottom:2px solid #b4a078;
  183. }
  184. .condition_two{
  185. width: 100%;
  186. display:flex;
  187. flex-flow:row;
  188. justify-content:center;
  189. align-items:center;
  190. }
  191. .condition_each_nav{
  192. width: 25%;
  193. display:flex;
  194. flex-flow:row;
  195. justify-content:center;
  196. align-items:center;
  197. position: relative;
  198. }
  199. .condition_icon{
  200. width: 10rpx;
  201. height: 10rpx;
  202. background-color: #fff;
  203. position: absolute;
  204. top: 50%;
  205. margin: -6rpx 0 0 22rpx;
  206. border: 1px solid #000;
  207. border-radius: 100%;
  208. }
  209. .condition_icon_active{
  210. background-color: #b4a078;
  211. border: 1px solid #b4a078;
  212. }
  213. .condition_title{
  214. display: block;
  215. float: left;
  216. font-size: 24rpx;
  217. line-height: 68rpx;
  218. color: #000;
  219. text-align: center;
  220. position: relative;
  221. }
  222. .condition_title_active{
  223. color: #b4a078;
  224. }
  225. /* 排序icon */
  226. .sort_icon{
  227. display: block;
  228. float: left;
  229. width: 12rpx;
  230. height: 16rpx;
  231. margin: 2rpx 0 0 6rpx;
  232. }
  233. .right_line{
  234. width: 2px;
  235. height: 18rpx;
  236. background-color: #f0f0f0;
  237. position: absolute;
  238. top:25rpx;
  239. right: 0;
  240. }