/* 交互区域 */
.pacify-interactions {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.pacify-interactions-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.pacify-like-btn,
.pacify-comment-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.pacify-like-btn:hover,
.pacify-comment-btn:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.pacify-like-btn.liked {
    background: #fff0f0;
    border-color: #ffccd5;
}

.pacify-like-btn.liked .pacify-icon {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.pacify-icon {
    font-size: 22px;
}

.pacify-count {
    font-weight: 600;
    color: #333;
}

.pacify-label {
    color: #666;
    font-size: 14px;
}

/* 弹窗 */
.pacify-comment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.pacify-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.pacify-modal-content {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

@media (max-width: 600px) {
    .pacify-modal-content {
        width: 100%;
        left: 0;
        transform: none;
    }
}

.pacify-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.pacify-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.pacify-modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pacify-comments-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    max-height: 450px;
}

.pacify-loading {
    text-align: center;
    padding: 40px;
    color: #999;
}

.pacify-comment-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pacify-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.pacify-comment-body {
    flex: 1;
}

.pacify-comment-nickname {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.pacify-comment-text {
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

.pacify-comment-time {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}

.pacify-comment-input {
    padding: 16px 24px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.pacify-nickname {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.pacify-content {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 15px;
    margin-bottom: 12px;
    resize: none;
    min-height: 70px;
    font-size: 14px;
    box-sizing: border-box;
}

.pacify-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.pacify-submit:hover {
    opacity: 0.9;
}

.pacify-empty {
    text-align: center;
    padding: 40px;
    color: #999;
}
