detail.scss 998 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .header {
  2. width: 100vw;
  3. background-color: #fff;
  4. padding: 20rpx 30rpx;
  5. box-sizing: border-box;
  6. margin-bottom: 20rpx;
  7. .user {
  8. display: flex;
  9. margin-bottom: 20rpx;
  10. .head-portrait {
  11. width: 96rpx;
  12. height: 96rpx;
  13. text-align: center;
  14. line-height: 96rpx;
  15. border-radius: 50%;
  16. background-color: #3874F6;
  17. margin-right: 20rpx;
  18. font-size: 30rpx;
  19. color: #FFFFFF;
  20. }
  21. .content {
  22. height: 96rpx;
  23. .name {
  24. line-height: 40rpx;
  25. font-size: 28rpx;
  26. color: #333333;
  27. font-weight: bold;
  28. }
  29. .tag-box {
  30. margin-top: 16rpx;
  31. }
  32. }
  33. }
  34. .exp {
  35. line-height: 34rpx;
  36. font-size: 24rpx;
  37. font-family: PingFang SC, PingFang SC;
  38. color: #666666;
  39. margin-bottom: 6rpx;
  40. }
  41. }