.wp-singular,.site-footer{background:#F0F2F5;}

/* Container */
.kexuejia-container {
    display: flex;
    flex-direction: column;
    background-color:#fff;
    gap: 2rem;
    margin: 0 auto;
    padding: 2rem;
}

/* 顶部 CP/CB 列表 */
.shipping-top h2,
.latest-shipping-notes h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.shipping-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.shipping-card {
    font-family: system-ui;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #000;
    transition: all 0.3s;
}

.shipping-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-card .speaker-avatar,
.shipping-note-card .speaker-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-fallback {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1890ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.shipping-name {
    font-weight: 600;
}

/* 最新磕点列表 */
.shipping-note-list {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 1rem;
}

.shipping-note-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #000;
    transition: all 0.3s;
}

.shipping-note-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.note-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.note-title {
    font-family:system-ui;
    font-weight: 600;
    font-size: 1.1rem;
}

.note-content {
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.note-content img{max-height: 200px;width: auto;}
.note-date {
    font-size: 0.8rem;
    color: #888;
}
