books.wxss 520 B

1234567891011121314151617181920212223242526272829
  1. .allBooks {
  2. /* margin-top: 44rpx; */
  3. display: flex;
  4. flex-direction: row;
  5. flex-wrap: wrap;
  6. }
  7. .book{
  8. width: 214rpx;
  9. display: flex;
  10. text-align: center;
  11. flex-direction: column;
  12. margin-left: 28rpx;
  13. margin-top: 44rpx;
  14. }
  15. .book image{
  16. display: block;
  17. width: 214rpx;
  18. height: 290rpx;
  19. }
  20. .book text{
  21. margin-top: 20rpx;
  22. width: 214rpx;
  23. height: 38rpx;
  24. font-size: 28rpx;
  25. color:#373737;
  26. text-overflow: ellipsis;
  27. overflow: hidden;
  28. white-space: nowrap;
  29. }