stuDetail.wxss 1000 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* pages/stuDetail/stuDetail.wxss */
  2. .stuDetail{
  3. position: relative;
  4. display: flex;
  5. flex-direction: column;
  6. }
  7. .stuInfoBox{
  8. display: flex;
  9. flex-direction: column;
  10. border-bottom: gray 1rpx solid;
  11. padding-left: 20rpx;
  12. }
  13. .stuInfo{
  14. color: #9E9E9E;
  15. padding-top: 10rpx;
  16. padding-bottom: 10rpx;
  17. }
  18. .needDetail{
  19. color: #363636;
  20. padding-bottom: 10rpx;
  21. }
  22. .needTitle{
  23. margin-bottom: 10rpx;
  24. width: 32%;
  25. text-align: center;
  26. /* border: 1rpx solid red; */
  27. background-color: #FF9412;
  28. color: white;
  29. border-radius: 10rpx;
  30. padding: 4rpx 0;
  31. }
  32. .require{
  33. margin-top: 10rpx;
  34. margin-bottom: 10rpx;
  35. font-size: 40rpx;
  36. color: #ff9000;
  37. font-weight: bold;
  38. }
  39. /* 收藏学生 */
  40. .collect{
  41. height: 80rpx;
  42. line-height: 80rpx;
  43. background-color: yellowgreen;
  44. text-align: center;
  45. font-size: 40rpx;
  46. font-weight: bold;
  47. color: white;
  48. margin-top: 50rpx
  49. }
  50. /* 底部空白区域 */
  51. .blank{
  52. height: 50rpx;
  53. }