goodsAllList.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /* kindSecondList.wxss */
  2. page{
  3. background-color: #f4f4f4;
  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. /* 列表 */
  94. .list{
  95. display: flex;
  96. justify-content: space-between;
  97. flex-wrap: wrap;
  98. background-color: #fff;
  99. margin-top:78rpx;
  100. }
  101. .list_item_wrap{
  102. width: 50%;
  103. box-sizing: border-box;
  104. border-bottom:1px solid #f0f0f0;
  105. }
  106. .list_item_wrap:nth-child(odd){
  107. border-right:1px solid #f0f0f0;
  108. }
  109. .list_item_wrap:nth-child(even){
  110. border-left:1px solid #f0f0f0;
  111. }
  112. .list_item{
  113. width: 100%;
  114. /* height:340rpx; */
  115. overflow: hidden;
  116. position: relative;
  117. margin: 0 auto;
  118. }
  119. .full_image{
  120. display: block;
  121. width: 100%;
  122. }
  123. .full_img_footer{
  124. width:100%;
  125. height:50rpx;
  126. font-size: 24rpx;
  127. line-height: 50rpx;
  128. color:#fff;
  129. text-align: center;
  130. background-color: rgba(0,0,0,0.6);
  131. position: absolute;
  132. left: 0;
  133. bottom: 0;
  134. }
  135. .full_title{
  136. height:72rpx;
  137. font-size: 30rpx;
  138. line-height: 36rpx;
  139. color:#444;
  140. text-overflow: ellipsis;
  141. overflow: hidden;
  142. display: -webkit-box;
  143. -webkit-line-clamp: 2;
  144. -webkit-box-orient: vertical;
  145. padding: 23rpx 20rpx 0 32rpx ;
  146. }
  147. .full_price{
  148. font:bold 30rpx "Microsoft Yahei";
  149. color:#b4a078;
  150. padding: 34rpx 0 30rpx 32rpx;
  151. }
  152. .full_price_unit{
  153. font: normal normal 22rpx Arial;
  154. text-decoration: line-through;
  155. color:#c8c8c8;
  156. padding-left:26rpx;
  157. }
  158. /* 列表结束 */
  159. .loading{
  160. text-align: center;
  161. font-size: 30rpx;
  162. line-height: 60rpx;
  163. color: #c8c8c8;
  164. }