mycourse.wxss 502 B

12345678910111213141516171819202122232425262728293031323334
  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-left: 28rpx;
  10. margin-bottom: 20rpx;
  11. width: 214rpx;
  12. }
  13. .book-box{
  14. width: 214rpx;
  15. height: 290rpx;
  16. }
  17. .book-box>image{
  18. width:100%;
  19. height: 100%;
  20. }
  21. .book-item>.item-title{
  22. margin-top:18rpx;
  23. width: 100%;
  24. font-size: 24rpx;
  25. color:#373737;
  26. text-overflow: ellipsis;
  27. overflow: hidden;
  28. white-space: nowrap;
  29. text-align: center;
  30. }