teacherUserDetail.wxss 998 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* teacher/pages/teacherUserDetail/teacherUserDetail.wxss */
  2. .teacher-user-detail {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: flex-start;
  7. padding: 0px 10px;
  8. }
  9. .teacher-user-detail .header {
  10. display: flex;
  11. justify-content: flex-start;
  12. align-items: center;
  13. width: 100%;
  14. height: 130px;
  15. /* border: 1px solid #333; */
  16. }
  17. .header van-image {
  18. margin: 0 15px;
  19. }
  20. .header van-icon {
  21. margin: 0 15px;
  22. background-color: #f8f8f8;
  23. padding: 15px;
  24. border-radius: 50%;
  25. }
  26. .teacher-user-detail .teacher-name {
  27. display: flex;
  28. flex-direction: column;
  29. }
  30. .teacher-name text {
  31. display: inline-block;
  32. margin-bottom: 5px;
  33. max-width: 300rpx;
  34. overflow: hidden;
  35. text-overflow: ellipsis;
  36. white-space: nowrap;
  37. }
  38. .teachder-detail {
  39. margin-top: 20px;
  40. width: 100%;
  41. }
  42. .content-detail {
  43. width: 100%;
  44. margin-top: 10px;
  45. padding: 5px;
  46. color: #555;
  47. font-size: 14px;
  48. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  49. }