home.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .uni-margin-wrap {
  2. width: 100%;
  3. }
  4. .uni-margin-wrap .swiper {
  5. height: 430rpx;
  6. }
  7. .uni-margin-wrap .swiper .swiper-item {
  8. display: block;
  9. height: 430rpx;
  10. line-height: 430rpx;
  11. text-align: center;
  12. }
  13. .pictures {
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .noticeSwiper {
  18. width: 668rpx;
  19. }
  20. .product .title {
  21. display: flex;
  22. justify-content: space-between;
  23. align-items: center;
  24. margin: 20rpx 10rpx;
  25. font-size: 28rpx;
  26. }
  27. .product .title text:last-child {
  28. color: #ccc;
  29. font-size: 21rpx;
  30. }
  31. .product .product_list {
  32. display: flex;
  33. flex-wrap: wrap;
  34. }
  35. .product .product_list .main {
  36. width: 33%;
  37. display: flex;
  38. flex-direction: column;
  39. align-items: center;
  40. margin: 18rpx 0;
  41. }
  42. .product .product_list .main image {
  43. width: 200rpx;
  44. height: 200rpx;
  45. border-radius: 8rpx;
  46. }
  47. .product .product_list .main .name {
  48. width: 200rpx;
  49. font-size: 22rpx;
  50. overflow: hidden;
  51. text-overflow: ellipsis;
  52. display: -webkit-box;
  53. -webkit-box-orient: vertical;
  54. -webkit-line-clamp: 2;
  55. }
  56. .product .product_list .main .price {
  57. width: 200rpx;
  58. color: #f00;
  59. }