teacher.wxss 977 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .container {
  2. position: relative;
  3. }
  4. .container-bg {
  5. position: absolute;
  6. left: 0;
  7. top: 0;
  8. }
  9. .teacher-bg {
  10. position: absolute;
  11. left: 50%;
  12. top: 120rpx;
  13. transform: translate(-50%);
  14. width: 635rpx;
  15. background: #FFFFFF;
  16. box-shadow: 0 0 25rpx 0 rgba(255, 67, 48, 0.14);
  17. border-radius: 14rpx;
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. padding: 80rpx 30rpx 0;
  22. }
  23. .teacher-avater-bg {
  24. position: absolute;
  25. left: 50%;
  26. transform: translate(-50%);
  27. top: 60rpx;
  28. width: 133rpx;
  29. height: 133rpx;
  30. background: #F4F1F4;
  31. border: 4rpx solid #FFFFFF;
  32. border-radius: 50%;
  33. display: flex;
  34. justify-content: center;
  35. align-content: center;
  36. }
  37. .teacher-name {
  38. font-size: 36rpx;
  39. font-weight: bold;
  40. color: #444444;
  41. }
  42. .tag {
  43. width: 635rpx;
  44. }
  45. .content {
  46. width: 100%;
  47. font-size: 26rpx;
  48. font-weight: 400;
  49. color: #999999;
  50. margin-bottom: 20rpx;
  51. }