mycourse.wxss 452 B

1234567891011121314151617181920212223242526272829303132
  1. .my-course {
  2. margin-top: 44rpx;
  3. display: flex;
  4. justify-content: space-around;
  5. flex-direction: row;
  6. flex-wrap: wrap;
  7. }
  8. .book-item{
  9. margin-bottom: 20rpx;
  10. width: 214rpx;
  11. }
  12. .book-box{
  13. width: 214rpx;
  14. height: 290rpx;
  15. }
  16. .book-box>image{
  17. width:100%;
  18. height: 100%;
  19. }
  20. .book-item>.item-title{
  21. margin-top:18rpx;
  22. width: 100%;
  23. font-size: 24rpx;
  24. color:#373737;
  25. text-overflow: ellipsis;
  26. overflow: hidden;
  27. white-space: nowrap;
  28. }