index.module.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .LookObject1 {
  2. :global {
  3. .objectSonMain {
  4. padding: 10px 30px;
  5. .topTit {
  6. font-size: 16px;
  7. font-weight: 700;
  8. color: var(--themeColor);
  9. margin-bottom: 12px;
  10. }
  11. .topInfo {
  12. .topInfoRow {
  13. display: flex;
  14. &>div {
  15. width: 50%;
  16. border: 1px solid #ccc;
  17. height: 34px;
  18. line-height: 32px;
  19. display: flex;
  20. .one {
  21. font-weight: 700;
  22. width: 80px;
  23. text-align: right;
  24. }
  25. }
  26. }
  27. .topInfoTex {
  28. cursor: pointer;
  29. border: 1px solid #ccc;
  30. padding: 5px 10px 4px;
  31. display: -webkit-box;
  32. overflow: hidden;
  33. white-space: normal !important;
  34. text-overflow: ellipsis;
  35. word-wrap: break-word;
  36. -webkit-line-clamp: 2;
  37. -webkit-box-orient: vertical;
  38. &>span {
  39. font-weight: 700;
  40. }
  41. }
  42. }
  43. .backBtn{
  44. margin-top: 12px;
  45. display: flex;
  46. justify-content: center;
  47. }
  48. }
  49. }
  50. }