skillsTraining.scss 779 B

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