information-detail.module.less 656 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .detail {
  2. background-color: #fff;
  3. min-height: 100vh;
  4. font-size: 15px;
  5. color: #333333;
  6. line-height: 25px;
  7. .detailContent {
  8. padding: 18px;
  9. }
  10. .title {
  11. font-size: 20px;
  12. font-weight: 600;
  13. color: #333333;
  14. line-height: 28px;
  15. }
  16. .who {
  17. padding-top: 15px;
  18. font-size: 14px;
  19. color: #aaaaaa;
  20. line-height: 20px;
  21. span {
  22. font-weight: 500;
  23. color: #f67146;
  24. padding-right: 10px;
  25. }
  26. }
  27. .content {
  28. padding-top: 24px;
  29. word-wrap: break-word;
  30. word-break: break-all;
  31. img {
  32. width: 100%;
  33. padding: 6px 0;
  34. border-radius: 6px;
  35. overflow: hidden;
  36. }
  37. }
  38. }