art-detail.component.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. .art-detail {
  2. .main-image {
  3. width: 100%;
  4. height: 300px;
  5. object-fit: cover;
  6. }
  7. .content-section {
  8. padding: 20px;
  9. h1 {
  10. font-size: 24px;
  11. font-weight: 600;
  12. margin: 0 0 12px;
  13. color: #333;
  14. }
  15. .description {
  16. font-size: 16px;
  17. line-height: 1.6;
  18. color: #666;
  19. margin-bottom: 20px;
  20. }
  21. .interaction-bar {
  22. display: flex;
  23. align-items: center;
  24. gap: 16px;
  25. padding: 8px 0;
  26. border-bottom: 1px solid #eee;
  27. }
  28. }
  29. .comments-section {
  30. padding: 20px;
  31. h2 {
  32. font-size: 18px;
  33. font-weight: 600;
  34. margin: 0 0 16px;
  35. color: #333;
  36. }
  37. .comment-input {
  38. margin-bottom: 24px;
  39. ion-button {
  40. margin-top: 12px;
  41. }
  42. }
  43. .comments-list {
  44. .comment-item {
  45. margin-bottom: 20px;
  46. padding-bottom: 20px;
  47. border-bottom: 1px solid #eee;
  48. .comment-header {
  49. display: flex;
  50. align-items: center;
  51. gap: 8px;
  52. margin-bottom: 8px;
  53. img {
  54. width: 32px;
  55. height: 32px;
  56. border-radius: 50%;
  57. }
  58. .username {
  59. font-weight: 500;
  60. color: #333;
  61. }
  62. .time {
  63. font-size: 12px;
  64. color: #999;
  65. }
  66. }
  67. .comment-content {
  68. font-size: 14px;
  69. line-height: 1.5;
  70. color: #666;
  71. margin: 0;
  72. }
  73. }
  74. }
  75. }
  76. }
  77. .art-detail-container {
  78. .image-container {
  79. width: 100%;
  80. height: 300px;
  81. overflow: hidden;
  82. img {
  83. width: 100%;
  84. height: 100%;
  85. object-fit: cover;
  86. }
  87. }
  88. .info-container {
  89. padding: 16px;
  90. h2 {
  91. font-size: 24px;
  92. font-weight: 600;
  93. color: #333;
  94. margin-bottom: 12px;
  95. }
  96. .description {
  97. font-size: 16px;
  98. color: #666;
  99. line-height: 1.5;
  100. margin-bottom: 20px;
  101. }
  102. .user-info {
  103. display: flex;
  104. align-items: center;
  105. margin-bottom: 16px;
  106. .avatar {
  107. width: 40px;
  108. height: 40px;
  109. border-radius: 50%;
  110. margin-right: 12px;
  111. }
  112. .user-details {
  113. display: flex;
  114. flex-direction: column;
  115. .username {
  116. font-size: 16px;
  117. font-weight: 500;
  118. color: #333;
  119. }
  120. .date {
  121. font-size: 14px;
  122. color: #999;
  123. }
  124. }
  125. }
  126. .likes {
  127. display: flex;
  128. align-items: center;
  129. gap: 8px;
  130. color: #666;
  131. ion-icon {
  132. font-size: 24px;
  133. }
  134. }
  135. }
  136. }