skillsTrainingCourse.scss 616 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* 技能培训课程 */
  2. /* #ifndef H5 */
  3. page {
  4. height: 100%;
  5. background-color: #f2f2f2;
  6. font-family: 'PingFangSC-Regular, PingFang SC';
  7. }
  8. /* #endif */
  9. .course {
  10. &-list {
  11. padding: 26rpx 30rpx;
  12. &-item {
  13. background-color: #fff;
  14. padding: 30rpx 32rpx;
  15. border-radius: 10rpx;
  16. display: flex;
  17. margin-bottom: 20rpx;
  18. .left {
  19. margin-right: 22rpx;
  20. border: solid 1px #b6b6b6;
  21. border-radius: 10rpx;
  22. }
  23. .right {
  24. view {
  25. color: #525252;
  26. font-size: 28rpx;
  27. line-height: 50rpx;
  28. &:first-child {
  29. font-size: 36rpx;
  30. color: #0B0B0B;
  31. }
  32. }
  33. }
  34. }
  35. }
  36. }