findStudent.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* pages/findStudent/findStudent.wxss */
  2. .studentWrapper{
  3. height: 100%;
  4. background-color: #E2F0D9;
  5. padding: 20rpx;
  6. }
  7. .studentList{
  8. display: flex;
  9. position: relative;
  10. /* border: 1rpx solid gray; */
  11. border-radius: 20rpx;
  12. background-color: #FFF2CC;
  13. margin-bottom: 20rpx;
  14. }
  15. /* 左侧部分 */
  16. .studentLeft{
  17. padding: 10rpx;
  18. font-weight: bold;
  19. font-size: 28rpx;
  20. }
  21. .studentLeftTitle,
  22. .studentExpect,
  23. .studentNeedCourse{
  24. padding: 6rpx 0;
  25. }
  26. /* 科目 */
  27. .studentNeedCourse{
  28. display: flex;
  29. }
  30. /* 期望目标 */
  31. .studentExpect{
  32. display: flex;
  33. }
  34. /* 期望目标和需求科目详情 */
  35. .needCourse,
  36. .expect{
  37. margin-left: 10rpx;
  38. width: 160rpx;
  39. display: block;
  40. white-space: nowrap;
  41. overflow: hidden;
  42. text-overflow: ellipsis;
  43. }
  44. /* 右侧部分定位 */
  45. .studentRight{
  46. position: absolute;
  47. left: 65%;
  48. color: #FF0000;
  49. font-size: 28rpx;
  50. }
  51. .studentRight,
  52. .studentSex{
  53. padding: 10rpx 0;
  54. }
  55. /* 设置性别的字体 */
  56. .studentSex{
  57. font-weight: bold;
  58. color: #00B050;
  59. }