123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- .art-detail {
- .main-image {
- width: 100%;
- height: 300px;
- object-fit: cover;
- }
- .content-section {
- padding: 20px;
- h1 {
- font-size: 24px;
- font-weight: 600;
- margin: 0 0 12px;
- color: #333;
- }
- .description {
- font-size: 16px;
- line-height: 1.6;
- color: #666;
- margin-bottom: 20px;
- }
- .interaction-bar {
- display: flex;
- align-items: center;
- gap: 16px;
- padding: 8px 0;
- border-bottom: 1px solid #eee;
- }
- }
- .comments-section {
- padding: 20px;
- h2 {
- font-size: 18px;
- font-weight: 600;
- margin: 0 0 16px;
- color: #333;
- }
- .comment-input {
- margin-bottom: 24px;
- ion-button {
- margin-top: 12px;
- }
- }
- .comments-list {
- .comment-item {
- margin-bottom: 20px;
- padding-bottom: 20px;
- border-bottom: 1px solid #eee;
- .comment-header {
- display: flex;
- align-items: center;
- gap: 8px;
- margin-bottom: 8px;
- img {
- width: 32px;
- height: 32px;
- border-radius: 50%;
- }
- .username {
- font-weight: 500;
- color: #333;
- }
- .time {
- font-size: 12px;
- color: #999;
- }
- }
- .comment-content {
- font-size: 14px;
- line-height: 1.5;
- color: #666;
- margin: 0;
- }
- }
- }
- }
- }
|