list.wxss 696 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* pages/list/list.wxss */
  2. .search input{
  3. background: #fff;
  4. }
  5. .list{
  6. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  7. border-radius: 20rpx;
  8. display: flex;
  9. padding: 20rpx;
  10. box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2);
  11. margin: 20rpx 0;
  12. background: #fff;
  13. }
  14. .list image{
  15. width: 25%;
  16. height: 200rpx;
  17. }
  18. .list>view{
  19. width: 75%;
  20. padding-left: 30rpx;
  21. vertical-align: middle;
  22. }
  23. .list .title{
  24. margin-bottom: 20rpx;
  25. text-overflow: ellipsis;
  26. overflow: hidden;
  27. white-space: nowrap;
  28. }
  29. .list text{
  30. color: #999;
  31. display: block;
  32. text-overflow: ellipsis;
  33. overflow: hidden;
  34. white-space: nowrap;
  35. font-size: 26rpx;
  36. padding: 10rpx 0;
  37. /* line-height: 44rpx; */
  38. }