stuList.wxss 929 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* pages/stuList/stuList.wxss */
  2. /* 头部搜索区 */
  3. .searchContainer{
  4. display: flex;
  5. height: 60rpx;
  6. line-height: 60rpx;
  7. margin-left: -20rpx;
  8. /* border-bottom: 1rpx solid red; */
  9. justify-content: space-around;
  10. font-size: 28rpx;
  11. }
  12. /* 间隔线 */
  13. .stuListInterval{
  14. height: 10rpx;
  15. margin-left: -20rpx;
  16. background-color: #F1F1F1;
  17. }
  18. /* 学生列表区 */
  19. .stuListContainer{
  20. margin-left: 20rpx;
  21. font-size: 28rpx;
  22. position: relative;
  23. }
  24. .stuListDetail{
  25. display: flex;
  26. }
  27. /* 左侧部分 */
  28. .stuLeft{
  29. display: flex;
  30. flex-direction: column;
  31. width: 60%;
  32. margin-top: 10rpx;
  33. }
  34. .stuTitle{
  35. font-weight: bold;
  36. color: yellowgreen;
  37. }
  38. .stuDesc{
  39. margin: 20rpx 0;
  40. }
  41. /* 右侧部分 */
  42. .stuRight{
  43. display: flex;
  44. flex-direction: column;
  45. position: absolute;
  46. right: 20rpx;
  47. color: #979797;
  48. margin-top: 10rpx;
  49. }
  50. .salary{
  51. color: #FF970F;
  52. }