skillsTraining.scss 749 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* 我的技能培训 */
  2. page {
  3. height: 100%;
  4. background-color: #f2f2f2;
  5. font-family: 'PingFangSC-Regular, PingFang SC';
  6. }
  7. .training {
  8. &-list {
  9. padding: 30rpx;
  10. &-item {
  11. background-color: #fff;
  12. border-radius: 10rpx;
  13. padding: 36rpx 32rpx;
  14. display: flex;
  15. align-items: center;
  16. .left {
  17. margin-right: 22rpx;
  18. }
  19. .right {
  20. color: #3E3E3E;
  21. font-size: 28rpx;
  22. line-height: 45rpx;
  23. width: 100%;
  24. .name {
  25. color: #3E3E3E;
  26. font-size: 36rpx;
  27. font-weight: 500;
  28. }
  29. .school {
  30. color: #3E3E3E;
  31. font-size: 28rpx;
  32. }
  33. .flex {
  34. display: flex;
  35. justify-content: space-between;
  36. align-items: center;
  37. font-size: 28rpx;
  38. color: #3E3E3E;
  39. }
  40. }
  41. }
  42. }
  43. }