upgradeCourse.scss 550 B

12345678910111213141516171819202122232425262728293031323334
  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. margin-top: 88rpx;
  11. &-item {
  12. background-color: #fff;
  13. padding: 30rpx 32rpx;
  14. border-radius: 10rpx;
  15. display: flex;
  16. margin-bottom: 20rpx;
  17. .left {
  18. margin-right: 22rpx;
  19. }
  20. .right {
  21. view {
  22. color: #9A9A9A;
  23. font-size: 28rpx;
  24. line-height: 50rpx;
  25. &:first-child {
  26. font-size: 34rpx;
  27. color: #0B0B0B;
  28. }
  29. }
  30. }
  31. }
  32. }
  33. }