publicCourse.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. border: solid 1px #666;
  24. padding: 5rpx;
  25. }
  26. .play-btn {
  27. position: absolute;
  28. top: 50%;
  29. left: 50%;
  30. margin-left: -35rpx;
  31. margin-top: -35rpx;
  32. }
  33. }
  34. &-title {
  35. font-size: 28rpx;
  36. color: #3f3f3f;
  37. margin-bottom: 6rpx;
  38. white-space: nowrap;
  39. overflow: hidden;
  40. text-overflow: ellipsis;
  41. -o-text-overflow: ellipsis;
  42. }
  43. &-subtitle {
  44. font-size: 22rpx;
  45. color: #a2a2a2;
  46. }
  47. }
  48. }
  49. }