list.wxss 673 B

1234567891011121314151617181920212223242526272829303132333435363738
  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: 20%;
  16. max-height: 100px;
  17. }
  18. .list>view{
  19. width: 80%;
  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. line-height: 44rpx;
  37. }