newkindList.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. border-bottom: 2rpx solid #f0f0f0;
  28. position: fixed;
  29. top: 0;
  30. left: 0;
  31. z-index: 10;
  32. }
  33. .header_nav{
  34. width: 100%;
  35. }
  36. .each_nav_wrap{
  37. width: 33%;
  38. }
  39. .header_nav_title{
  40. display: inline-block;
  41. width: 100%;
  42. text-align: center;
  43. line-height: 78rpx;
  44. color:#a0b0b5;
  45. border-bottom: 3rpx solid #fff;
  46. box-sizing: border-box;
  47. }
  48. .nav_item_active{
  49. color:#b4a078;
  50. border-bottom:3rpx solid #b4a078;
  51. box-sizing: border-box;
  52. }
  53. /* 标题 */
  54. .content_title_wrap{
  55. width:100%;
  56. height:50rpx;
  57. position:relative;
  58. margin:0 auto;
  59. padding: 15rpx 0;
  60. background-color: #fff;
  61. text-align: center;
  62. }
  63. .title_line{
  64. width:100%;
  65. height:2rpx;
  66. background-color: #c4cdd3;
  67. position:absolute;
  68. top:50%;
  69. left:0;
  70. margin-top:-1rpx;
  71. }
  72. .title_contemt{
  73. display: inline-block;
  74. padding:0 20rpx;
  75. height:50rpx;
  76. font-size: 32rpx;
  77. line-height: 50rpx;
  78. text-align: center;
  79. position: relative;
  80. margin-top:0;
  81. z-index: 2;
  82. color: #6f7478;
  83. background-color: #fff;
  84. }
  85. /* 列表 */
  86. .list{
  87. display: flex;
  88. justify-content: space-between;
  89. flex-wrap: wrap;
  90. background-color: #fff;
  91. margin-top:78rpx;
  92. }
  93. .list_item_wrap{
  94. width: 50%;
  95. box-sizing: border-box;
  96. border-bottom:1px solid #f0f0f0;
  97. }
  98. .list_item_wrap:nth-child(odd){
  99. border-right:1px solid #f0f0f0;
  100. }
  101. .list_item_wrap:nth-child(even){
  102. border-left:1px solid #f0f0f0;
  103. }
  104. .list_item{
  105. width: 100%;
  106. /* height:340rpx; */
  107. overflow: hidden;
  108. position: relative;
  109. margin: 0 auto;
  110. }
  111. .full_image{
  112. display: block;
  113. width: 100%;
  114. }
  115. .full_img_footer{
  116. width:100%;
  117. height:50rpx;
  118. font-size: 24rpx;
  119. line-height: 50rpx;
  120. color:#fff;
  121. text-align: center;
  122. background-color: rgba(0,0,0,0.6);
  123. position: absolute;
  124. left: 0;
  125. bottom: 0;
  126. }
  127. .full_title{
  128. height:72rpx;
  129. font-size: 30rpx;
  130. line-height: 36rpx;
  131. color:#444;
  132. text-overflow: ellipsis;
  133. overflow: hidden;
  134. display: -webkit-box;
  135. -webkit-line-clamp: 2;
  136. -webkit-box-orient: vertical;
  137. padding: 23rpx 20rpx 0 32rpx ;
  138. }
  139. .full_price{
  140. font:bold 30rpx "Microsoft Yahei";
  141. color:#b4a078;
  142. padding: 34rpx 0 30rpx 32rpx;
  143. }
  144. .full_price_unit{
  145. font: normal normal 22rpx Arial;
  146. text-decoration: line-through;
  147. color:#c8c8c8;
  148. padding-left:26rpx;
  149. }
  150. /* 列表结束 */
  151. /* 加载更多 */
  152. .loading{
  153. text-align: center;
  154. font-size: 30rpx;
  155. line-height: 60rpx;
  156. color: #c8c8c8;
  157. }