/* 主容器 */
.shipping-note-single-container {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(214,51,108,0.1);
}

/* Header */
.shipping-note-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #ffd6e8;
    padding-bottom: 1rem;
}

.note-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #d6336c; /* 粉红色标题 */
}

.note-meta {
    color: #a64d79;
    font-size: 0.9rem;
}

.note-meta .note-shipping a {
    margin-right: 0.5rem;
    color: #d6336c;
    text-decoration: none;
}
.note-meta .note-shipping a:hover {
    text-decoration: underline;
}

/* 参与人物 */
.note-speakers {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.speaker-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffe6f0;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    color: #d6336c;
    position: relative;
    text-decoration: none;
    transition: all 0.2s;
}
.speaker-card:hover {
    color:#d6336c;
    transform: translateY(-2px);
}

/* 头像 */
.speaker-avatar, .avatar-fallback {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffd6e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #d6336c;
    border: 2px solid #ffb6c1;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
