skillsTraining.scss 1010 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* 我的技能培训 */
  2. page {
  3. height: 100%;
  4. background-color: #f2f2f2;
  5. font-family: 'PingFangSC-Regular, PingFang SC';
  6. }
  7. .training {
  8. &-tab {
  9. margin-top: 88rpx;
  10. }
  11. &-list {
  12. padding: 30rpx;
  13. &-item {
  14. background-color: #fff;
  15. border-radius: 10rpx;
  16. padding: 36rpx 32rpx;
  17. display: flex;
  18. align-items: center;
  19. margin-bottom: 15px;
  20. .left {
  21. margin-right: 22rpx;
  22. border: solid 1px #e0e0e0;
  23. padding: 2rpx;
  24. border-radius: 10rpx;
  25. }
  26. .right {
  27. color: #3E3E3E;
  28. font-size: 28rpx;
  29. line-height: 45rpx;
  30. width: calc(100% - 248rpx);
  31. .wrap {
  32. width: 100%;
  33. overflow: hidden;
  34. white-space: nowrap;
  35. text-overflow: ellipsis;
  36. }
  37. .name {
  38. color: #3E3E3E;
  39. font-size: 36rpx;
  40. font-weight: 500;
  41. }
  42. .school {
  43. color: #3E3E3E;
  44. font-size: 28rpx;
  45. }
  46. .flex {
  47. display: flex;
  48. justify-content: space-between;
  49. align-items: center;
  50. font-size: 28rpx;
  51. color: #3E3E3E;
  52. }
  53. }
  54. }
  55. }
  56. }