teachCollectionStu.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* pages/teachCollectionStu/teachCollectionStu.wxss */
  2. /* 学生列表区 */
  3. .stuListContainer{
  4. margin-left: 20rpx;
  5. font-size: 28rpx;
  6. position: relative;
  7. }
  8. .stuDetail{
  9. position: relative;
  10. }
  11. /* 间隔线 */
  12. .stuListInterval{
  13. height: 10rpx;
  14. margin-left: -20rpx;
  15. background-color: #F1F1F1;
  16. }
  17. .stuListDetail{
  18. display: flex;
  19. }
  20. /* 左侧部分 */
  21. .stuLeft{
  22. display: flex;
  23. flex-direction: column;
  24. width: 60%;
  25. margin-top: 10rpx;
  26. margin-bottom: 60rpx;
  27. }
  28. /* 科目 */
  29. .stuTitle{
  30. font-weight: bold;
  31. color: yellowgreen;
  32. }
  33. /* 描述 */
  34. .stuDesc{
  35. margin: 20rpx 0;
  36. }
  37. /* 右侧部分 */
  38. .stuRight{
  39. display: flex;
  40. flex-direction: column;
  41. position: absolute;
  42. right: 20rpx;
  43. color: #979797;
  44. margin-top: 10rpx;
  45. }
  46. /* 家教费 */
  47. .salary{
  48. color: #FF970F;
  49. }
  50. /* 取消收藏 */
  51. .canceCollect{
  52. position: absolute;
  53. display: flex;
  54. justify-content: flex-end;
  55. right: 30rpx;
  56. bottom: 10rpx;
  57. border: 1rpx solid skyblue;
  58. border-radius: 12rpx;
  59. padding: 4rpx 6rpx;
  60. background-color: skyblue;
  61. }