skillsTrainingCourse.scss 586 B

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