123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- .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;
- }
- }
- }
- }
- }
- .art-detail-container {
- .image-container {
- width: 100%;
- height: 300px;
- overflow: hidden;
- img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- }
- .info-container {
- padding: 16px;
- h2 {
- font-size: 24px;
- font-weight: 600;
- color: #333;
- margin-bottom: 12px;
- }
- .description {
- font-size: 16px;
- color: #666;
- line-height: 1.5;
- margin-bottom: 20px;
- }
- .user-info {
- display: flex;
- align-items: center;
- margin-bottom: 16px;
- .avatar {
- width: 40px;
- height: 40px;
- border-radius: 50%;
- margin-right: 12px;
- }
- .user-details {
- display: flex;
- flex-direction: column;
- .username {
- font-size: 16px;
- font-weight: 500;
- color: #333;
- }
- .date {
- font-size: 14px;
- color: #999;
- }
- }
- }
- .likes {
- display: flex;
- align-items: center;
- gap: 8px;
- color: #666;
- ion-icon {
- font-size: 24px;
- }
- }
- }
- }
|