student.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. .container {
  2. padding: 35rpx 30rpx;
  3. margin-top: 100rpx;
  4. }
  5. .card {
  6. background: #fff;
  7. border-radius: 30rpx;
  8. box-shadow: 0 0 10rpx 0 rgba(153, 153, 153, 0.21);
  9. padding: 20rpx 35rpx 40rpx 30rpx;
  10. display: flex;
  11. flex-direction: column;
  12. margin-bottom: 25rpx;
  13. }
  14. .base-info {
  15. display: flex;
  16. flex-direction: row;
  17. align-items: center;
  18. }
  19. .student-avater {
  20. width: 69rpx;
  21. height: 69rpx;
  22. }
  23. .user-info {
  24. margin-left: 20rpx;
  25. flex: 1;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: space-between;
  29. }
  30. .user-base {
  31. display: flex;
  32. flex-direction: row;
  33. align-items: center;
  34. }
  35. .user-name {
  36. font-size: 30rpx;
  37. font-weight: 400;
  38. color: #333333;
  39. }
  40. .user-tag {
  41. padding: 3rpx 15rpx;
  42. border-radius: 21px;
  43. font-size: 24rpx;
  44. font-weight: 400;
  45. color: #FFFFFF;
  46. }
  47. .user-tag1 {
  48. margin-left: 20rpx;
  49. background: linear-gradient(0deg, #06A6EB 0%, #4CCAFF 100%);
  50. }
  51. .user-tag2 {
  52. margin-left: 10rpx;
  53. background: linear-gradient(0deg, #FF4330 0%, #FF7B60 100%);
  54. }
  55. .user-tel {
  56. font-size: 22rpx;
  57. font-weight: 400;
  58. color: #FF4330;
  59. margin-left: 10rpx;
  60. }
  61. .user-other {
  62. font-size: 22rpx;
  63. font-weight: 400;
  64. color: #999999;
  65. }
  66. .other-info {
  67. display: flex;
  68. margin-top: 15rpx;
  69. }
  70. .divide {
  71. margin: 0 25rpx;
  72. width: 1rpx;
  73. background: #F0EDF1;
  74. }
  75. .other-tag {
  76. display: flex;
  77. align-items: center;
  78. flex-direction: row;
  79. }
  80. .other-tag-txt {
  81. font-size: 22rpx;
  82. font-weight: 400;
  83. color: #999999;
  84. margin-left: 10rpx;
  85. margin-top: 3rpx;
  86. display: flex;
  87. align-items: center;
  88. }
  89. .other-content {
  90. margin-top: 10rpx;
  91. font-size: 22rpx;
  92. font-weight: 400;
  93. color: #666666;
  94. }
  95. .user-job {
  96. flex: 2;
  97. }
  98. .search {
  99. position: fixed;
  100. left: 0;
  101. top: 0rpx;
  102. width: 100%;
  103. z-index: 2;
  104. }
  105. .search-right {
  106. display: flex;
  107. flex-direction: row;
  108. justify-content: center;
  109. align-items: center;
  110. }