index.scss 1.1 KB

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