index.wxss 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. @import "../../module/search/search.wxss"
  2. @import "../../module/caritem/caritem.wxss"
  3. /*******topbanner*********/
  4. .content{
  5. background-color:#F9F9F9;
  6. }
  7. .banner{
  8. position:relative;
  9. }
  10. .banner_t{
  11. position:relative;
  12. height: 380rpx;
  13. width: 100%;
  14. }
  15. .banner_item{
  16. width:100%;
  17. height: 100%;
  18. }
  19. .banner_item image{
  20. width:100%;
  21. height: 100%;
  22. }
  23. .tab{
  24. position: absolute;
  25. bottom:10rpx;
  26. display: flex;
  27. text-align: center;
  28. justify-content:center;
  29. align-items:center;
  30. width:100%;
  31. }
  32. .tab-item{
  33. width:8rpx;
  34. height: 8rpx;
  35. border-radius:4rpx;
  36. background-color: rgba(255, 230, 0, 0.5);
  37. margin:0rpx 10rpx;
  38. }
  39. .selected{
  40. background-color: rgba(255, 230, 0, 1);
  41. }
  42. /*******nav*********/
  43. .nav_list{
  44. display: flex;
  45. padding: 0rpx 20rpx;
  46. height: 180rpx;
  47. background: white;
  48. }
  49. .nav_item{
  50. flex: 1;
  51. display: block;
  52. }
  53. .nav_item_link{
  54. text-align: center;
  55. margin:0rpx auto;
  56. }
  57. .nav_item_img{
  58. display: inline-block;
  59. width:82rpx;
  60. height: 82rpx;
  61. margin-top:28rpx;
  62. border-radius: 28rpx;
  63. box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.21);
  64. background-repeat: no-repeat;
  65. background-size: 70rpx;
  66. background-position: center;
  67. }
  68. .nav_item_img image{
  69. width:70rpx;
  70. height: 70rpx;
  71. margin:6rpx;
  72. }
  73. .nav_item_t{
  74. height: 24rpx;
  75. line-height: 36rpx;
  76. color: rgba(56, 55, 53, 1);
  77. font-size: 24rpx;
  78. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  79. }
  80. /*******goodcar*********/
  81. .goodcar{
  82. height: 98rpx;
  83. width:100%;
  84. display: flex;
  85. margin-top:20rpx;
  86. background-color:white;
  87. position: relative;
  88. }
  89. .goodcar_t{
  90. width:46rpx;
  91. height: 44rpx;
  92. margin:27rpx 48rpx 0rpx;
  93. }
  94. .banner_g{
  95. position: relative;
  96. height: 100%;
  97. flex:1;
  98. }
  99. .goodcar_item{
  100. height: 49rpx;
  101. line-height: 49rpx;
  102. font-size: 24rpx;
  103. vertical-align: middle;
  104. display: flex;
  105. align-items: center;
  106. font-family: PingFangSC-Light,NotoSansHans-Light;
  107. }
  108. .goodcar_item_label{
  109. display: inline-block;
  110. padding: 0rpx 5rpx;
  111. line-height: 22rpx;
  112. height: 22rpx;
  113. border-radius: 2rpx;
  114. background-color: #FFE600;
  115. color: rgba(56, 55, 53, 1);
  116. font-size: 16rpx;
  117. text-align: center;
  118. margin-right: 10rpx;
  119. }
  120. .prevent_move{
  121. position: absolute;
  122. top:0rpx;
  123. left:0rpx;
  124. background-color: rgba(0,0,0,0);
  125. width: 100%;
  126. height: 100%;
  127. }
  128. /*******brand*********/
  129. .brand{
  130. width:754rpx;
  131. margin-top:16rpx;
  132. overflow: hidden;
  133. display: flex;
  134. flex-wrap:wrap;
  135. }
  136. .brand_r{
  137. display: flex;
  138. flex-wrap:wrap;
  139. margin: 0rpx -2rpx 2rpx;
  140. }
  141. .brand_item_b{
  142. height: 150rpx;
  143. width:25%;
  144. overflow: hidden;
  145. }
  146. .brand_item{
  147. background: white;
  148. height: 148rpx;
  149. margin:2rpx 2rpx 0px 0px;
  150. }
  151. .brand_item_link{
  152. text-align: center;
  153. }
  154. .brand_item_img{
  155. height: 104rpx;
  156. background-repeat: no-repeat;
  157. background-position: center;
  158. background-size: 70%;
  159. }
  160. .brand_item_name{
  161. height: 36rpx;
  162. line-height: 36rpx;
  163. color: rgba(56, 55, 53, 1);
  164. font-size: 20rpx;
  165. }
  166. .brand_more{
  167. display: block;
  168. margin:0px auto;
  169. width: 500rpx;
  170. height: 68rpx;
  171. line-height: 68rpx;
  172. font-size: 22rpx;
  173. text-align: center;
  174. background-color: rgba(255, 230, 0, 1);
  175. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  176. }
  177. /**********recommend**********/
  178. .recommend{
  179. margin-top:20rpx;
  180. background: white;
  181. }
  182. .recommend_t{
  183. padding:64rpx 0rpx 60rpx;
  184. }
  185. .recommend_img,.like_img{
  186. height: 32rpx;
  187. display: block;
  188. margin:0px auto;
  189. width:176rpx;
  190. }
  191. .recommend_w{
  192. height: 14rpx;
  193. width:248rpx;
  194. margin:10rpx auto 0rpx;
  195. display: block;
  196. }
  197. .like_w{
  198. height: 14rpx;
  199. width:204rpx;
  200. margin:10rpx auto 0rpx;
  201. display: block;
  202. }
  203. .recommend_sw{
  204. position: relative;
  205. }
  206. .recommend_list{
  207. height: 200rpx;
  208. }
  209. .recommended_tab{
  210. bottom:10rpx;
  211. padding: 5rpx 0rpx 10rpx;
  212. display: flex;
  213. text-align: center;
  214. justify-content:center;
  215. align-items:center;
  216. width:100%;
  217. }
  218. .recommended_tab-item{
  219. width:8rpx;
  220. height: 8rpx;
  221. border-radius:4rpx;
  222. background-color: rgba(155, 155, 155, 1);
  223. margin:0rpx 10rpx;
  224. }
  225. .recommend_selected{
  226. background-color: rgba(58, 55, 53, 0.95);
  227. }
  228. /************cardetail***********/
  229. .car_b{
  230. height: 200rpx;
  231. width:100%;
  232. display: flex
  233. }
  234. .like_cart_c{
  235. margin-top:-20rpx;
  236. }
  237. .car_img{
  238. display: block;
  239. width:290rpx;
  240. height:100%;
  241. background-repeat: no-repeat;
  242. background-size: 100%;
  243. background-position: center;
  244. }
  245. .car_info{
  246. padding:10rpx 38rpx 0rpx 20rpx;
  247. align-items:center;
  248. flex: 1;
  249. display: flex;
  250. flex-direction:column;
  251. justify-content:space-around;
  252. align-items:flex-start;
  253. }
  254. .car_t{
  255. line-height: 36rpx;
  256. color: rgba(56, 55, 53, 1);
  257. font-size: 26rpx;
  258. text-align: left;
  259. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  260. }
  261. .car_time{
  262. height: 30rpx;
  263. line-height: 30rpx;
  264. color: rgba(135, 135, 135, 1);
  265. font-size: 20rpx;
  266. text-align: left;
  267. }
  268. .car_p{
  269. height: 33rpx;
  270. line-height: 33rpx;
  271. color: rgba(33, 36, 37, 1);
  272. font-size: 28rpx;
  273. font-family: PingFangSC-Semibold,NotoSansHans-Blod;
  274. }
  275. .car_characteristic{
  276. /*height: 50rpx;*/
  277. }
  278. .car_characteristic::after{
  279. content:"";
  280. display: block;
  281. height: 0rpx;
  282. clear: both;
  283. }
  284. .car_characteristic_i{
  285. float: left;
  286. height: 34rpx;
  287. line-height: 34rpx;
  288. border-radius: 6rpx;
  289. font-size: 18rpx;
  290. padding:0rpx 10rpx;
  291. margin-right: 15rpx;
  292. background-color: rgba(255, 230, 0, 1);
  293. color: rgba(56, 55, 53, 1);
  294. font-family: PingFangSC-Light,NotoSansHans-Light;
  295. }
  296. .show_more{
  297. border-top: 1rpx solid #F2F2F5;
  298. line-height: 68rpx;
  299. height: 68rpx;
  300. color: rgba(135, 135, 135, 1);
  301. font-size: 24rpx;
  302. background: white;
  303. display: flex;
  304. align-items: center;
  305. justify-content: center;
  306. }
  307. .show_more image{
  308. width:22rpx;
  309. height: 22rpx;
  310. margin-left: 10rpx;
  311. }
  312. /*******bottom*********/
  313. .bottom_banner{
  314. width: 100%;
  315. height:240rpx;
  316. display: block;
  317. }