.news-thumb-wrapper {
    width: 100px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}

.news-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-actions {
    margin-top: 10px;
}

.read-origin-btn {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.read-origin-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.read-origin-btn:active {
    transform: translateY(0);
}

/* 修改news-item样式，使其更像可点击的卡片 */
.news-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 加载更多区域样式 */
.load-more {
    text-align: center;
    padding: 30px;
    min-height: 80px;
}

.load-more button {
    padding: 12px 40px;
    background: white;
    border: 1px solid #667eea;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.load-more button:hover {
    background: #667eea;
    color: white;
}

/* 加载中状态 */
.loading-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #999;
    font-size: 14px;
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin { 
    to { transform: rotate(360deg); } 
}

/* 没有更多内容 */
.no-more {
    color: #999;
    font-size: 14px;
    padding: 20px;
}
