home.wxss 880 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* pages/home/home.wxss */
  2. .swiper {
  3. width: 100%;
  4. height: 350rpx;
  5. }
  6. .swiperImg {
  7. width: 100%;
  8. height: 350rpx;
  9. }
  10. .list {
  11. width: 100%;
  12. height: auto;
  13. margin-top: 25rpx;
  14. }
  15. .listTop {
  16. display: flex;
  17. height: 60rpx;
  18. /* background: #00f; */
  19. align-items: center;
  20. justify-content: space-between;
  21. padding: 0 20rpx;
  22. }
  23. .title-right {
  24. font-size: 20rpx;
  25. color: rgba(61, 57, 57, 0.267);
  26. }
  27. .scroll-view_H{
  28. white-space: nowrap;
  29. }
  30. .listBottom {
  31. padding: 0 20rpx;
  32. }
  33. .list-item {
  34. width: 200rpx;
  35. display: inline-flex;
  36. flex-direction: column;
  37. text-align: center;
  38. margin-left: 10rpx;
  39. }
  40. .item-image {
  41. width: 100%;
  42. height: 300rpx;
  43. margin-bottom: 10rpx;
  44. border-radius: 4rpx;
  45. }
  46. .item-title {
  47. width: 100%;
  48. font-size: 26rpx;
  49. overflow: hidden;
  50. white-space: nowrap;
  51. text-overflow: ellipsis;
  52. }
  53. .list .list-item:first-child {
  54. margin-left: 0;
  55. }