publicCourse.scss 887 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. page {
  2. min-height: calc(100vh - 44px);
  3. background-color: #f2f2f2;
  4. }
  5. .content {
  6. padding: 26rpx 30rpx;
  7. &-list {
  8. padding: 40rpx 30rpx 0;
  9. background-color: #fff;
  10. border-radius: 10rpx;
  11. display: flex;
  12. flex-wrap: wrap;
  13. justify-content: space-between;
  14. margin-bottom: 20rpx;
  15. &-item {
  16. width: calc(50% - 11rpx);
  17. margin-bottom: 38rpx;
  18. &-image {
  19. margin-bottom: 6rpx;
  20. position: relative;
  21. .image {
  22. border-radius: 8rpx !important;
  23. }
  24. .play-btn {
  25. position: absolute;
  26. top: 50%;
  27. left: 50%;
  28. margin-left: -35rpx;
  29. margin-top: -35rpx;
  30. }
  31. }
  32. &-title {
  33. font-size: 28rpx;
  34. color: #3f3f3f;
  35. margin-bottom: 6rpx;
  36. }
  37. &-subtitle {
  38. font-size: 22rpx;
  39. color: #a2a2a2;
  40. }
  41. }
  42. }
  43. }