/* 主容器 */
.shipping-taxonomy-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #fff; /* 淡粉色背景 */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Header */
.shipping-header {
    border-bottom: 1px solid #ffd6e8;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.shipping-title {
    font-size: 2rem;
    font-weight: 600;
    color: #d6336c; /* 粉红色调 */
    margin-bottom: 0.5rem;
}

.shipping-description {
    font-size: 1rem;
    color: #8c3b5e;
}

/* 参与人物 */
.shipping-speakers {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.speaker-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    text-align: center;
    position: relative;
    text-decoration: none;
    transition: all 0.2s;
}

.speaker-card:hover {
    transform: translateY(-3px);
}

.speaker-avatar, .avatar-fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffe6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #d6336c;
    margin-bottom: 0.3rem;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffc0d6;
}

/* 爱心装饰 */
.speaker-card .speaker-avatar::after {
    content: "♥";
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 0.8rem;
    color: #ff4d6d;
}

/* 名字 */
.speaker-name {
    font-size: 0.85rem;
    color: #d6336c;
}

/* 磕点列表 */
.shipping-note-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shipping-note-card {
    padding: 1rem;
    border: 1px solid #ffd6e8;
    border-radius: 10px;
    transition: all 0.2s;
    background-color: #fff;
}

.shipping-note-card:hover {
    box-shadow: 0 4px 12px rgba(214,51,108,0.2);
    border-color: #ffb6c1;
}

.shipping-note-card .note-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #d6336c;
}
.shipping-note-card .note-title a{
    color:#d6336c;
}

.note-date {
    font-size: 0.85rem;
    color: #a64d79;
}

.note-speakers {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}
/* 参与人物 */
.shipping-speakers {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.speaker-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    text-align: center;
    position: relative;
    text-decoration: none;
    transition: all 0.2s;
}

.speaker-card:hover {
    transform: translateY(-3px);
}

.speaker-avatar, .avatar-fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffe6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #d6336c;
    margin-bottom: 0.3rem;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffc0d6;
}

/* 名字 */
.speaker-name {
    font-size: 0.85rem;
    color: #d6336c;
}

/* 爱心分隔符 */
.speaker-love {
    font-size: 20px;
    color: #ff4d6d;
    animation: pulse 1s infinite;
    margin: 0 0.3rem;
}

/* 心跳动画 */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}
