index.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /* index.wxss */
  2. page{
  3. background-color: #fff;
  4. }
  5. /* 列表 */
  6. .list_item_wrap{
  7. display: block;
  8. width: 50%;
  9. height: 25%;
  10. box-sizing: border-box;
  11. }
  12. .list_item_wrap:nth-child(odd){
  13. border-right:2rpx solid #fff;
  14. }
  15. .list_item_wrap:nth-child(even){
  16. border-left:2rpx solid #fff;
  17. }
  18. .list{
  19. width: 100%;
  20. height: 100vh;
  21. display: flex;
  22. justify-content: space-between;
  23. flex-wrap: wrap;
  24. background-color: transparent;
  25. }
  26. .list_item{
  27. width: 100%;
  28. height: 100%;
  29. box-sizing: border-box;
  30. border-bottom: 4rpx solid #fff;
  31. }
  32. .list_item_wrap:nth-last-child(1) .list_item,.list_item_wrap:nth-last-child(2) .list_item{
  33. border-bottom: 0px solid #fff;
  34. }
  35. .full_image{
  36. display: block;
  37. width: 100%;
  38. height: 100%;
  39. }
  40. .kind_bg{
  41. display: block;width: 100%;
  42. }
  43. /* 新版本样式 */
  44. .container{
  45. background-color: #fff;
  46. }
  47. .kind_top_wrap{
  48. padding: 0 30rpx 40rpx;
  49. }
  50. .kind_top_each{
  51. display: block;
  52. float: left;
  53. width: 25%;
  54. margin: 40rpx 0 0 0;
  55. text-align: center;
  56. }
  57. .kind_top_each_img{
  58. width: 53rpx;
  59. height: 48rpx;
  60. margin: 0 auto;
  61. }
  62. .kind_top_each_tit{
  63. font-size: 22rpx;
  64. color: #454545;
  65. padding: 15rpx 0 0 0;
  66. }
  67. .kind_center_img{
  68. width: 100%;
  69. margin-bottom: 20rpx;
  70. }
  71. .kind_footer_each{
  72. float: left;
  73. }
  74. .kind_footer_each_img{
  75. width: 250rpx;
  76. height: 250rpx;
  77. }
  78. .kind_footer_each_tit,.kind_footer_each_price{
  79. text-align: center;
  80. font-size: 22rpx;
  81. color: #232323;
  82. }
  83. .kind_footer_each_tit{
  84. padding: 10rpx 0 18rpx 0;
  85. }
  86. /* vip弹窗 */
  87. .vip_wind_wrap{
  88. width: 100%;
  89. height: 100%;
  90. position: fixed;
  91. top: 0;
  92. left: 0;
  93. z-index: 99;
  94. background-color: rgba(0,0,0,0.6);
  95. }
  96. .vip_content{
  97. position: fixed;
  98. top:0;
  99. left:50%;
  100. margin:0 0 0 -254rpx;
  101. }
  102. .vip_cont{
  103. position: relative;
  104. }
  105. .vip_bg{
  106. display: block;
  107. width: 508rpx;
  108. height: 662rpx;
  109. margin: 0 auto;
  110. }
  111. .vip_bg_icon{
  112. display: block;
  113. width: 190rpx;
  114. height: 168rpx;
  115. position: absolute;
  116. right: -100rpx;
  117. bottom: -60rpx;
  118. }
  119. /* input */
  120. .input_cont_wrap{
  121. position: absolute;
  122. left: 56rpx;
  123. bottom: 26rpx;
  124. }
  125. .vip_input_bg{
  126. display: block;
  127. width: 390rpx;
  128. height: 104rpx;
  129. }
  130. /* input */
  131. .input_wrap{
  132. position: relative;
  133. }
  134. .input_inp{
  135. width: 330rpx;
  136. height: 66rpx;
  137. position: absolute;
  138. top:20rpx;
  139. left: 30rpx;
  140. font-size: 24rpx;
  141. color: #969696;
  142. text-align: center;
  143. border: 0px none;
  144. }
  145. .input_placeholder{
  146. font-size: 24rpx;
  147. color: #969696;
  148. }
  149. .input_btn{
  150. width: 140rpx;
  151. height: 38rpx;
  152. font-size: 20rpx;
  153. line-height: 40rpx;
  154. color: #fff;
  155. background-color: #654a36;
  156. text-align: center;
  157. border-radius: 4px;
  158. box-shadow: 0 3px 0 0 #422d1e;
  159. margin: 16rpx auto 0;
  160. }
  161. /* 关闭弹窗按钮 */
  162. .close_icon{
  163. display: block;
  164. width: 58rpx;
  165. height: 58rpx;
  166. margin: 143rpx auto 0;
  167. }