index.scss 1006 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @import '/static/unread.wxss';
  2. @import '../../components/My_card/index.scss';
  3. /* 课程 */
  4. .course {
  5. display: flex;
  6. height: 180rpx;
  7. padding: 30rpx;
  8. .cover-img {
  9. border-radius: 8rpx;
  10. overflow: hidden;
  11. }
  12. .explian {
  13. width: 370rpx;
  14. height: 100%;
  15. margin-left: 30rpx;
  16. .title {
  17. height: 40rpx;
  18. line-height: 40rpx;
  19. font-size: 28rpx;
  20. font-family: PingFang SC-Bold, PingFang SC;
  21. font-weight: bold;
  22. color: #333333;
  23. }
  24. .details {
  25. height: 34rpx;
  26. line-height: 34rpx;
  27. font-size: 24rpx;
  28. font-family: PingFang SC-Regular, PingFang SC;
  29. color: #666666;
  30. margin-top: 10rpx;
  31. }
  32. .read {
  33. height: 28rpx;
  34. font-size: 20rpx;
  35. font-family: PingFang SC-Regular, PingFang SC;
  36. color: #999999;
  37. margin-top: 8rpx;
  38. }
  39. }
  40. }