upgradeCourse.scss 529 B

123456789101112131415161718192021222324252627282930313233
  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. }
  19. .right {
  20. view {
  21. color: #9A9A9A;
  22. font-size: 28rpx;
  23. line-height: 50rpx;
  24. &:first-child {
  25. font-size: 34rpx;
  26. color: #0B0B0B;
  27. }
  28. }
  29. }
  30. }
  31. }
  32. }