/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* 文章列表样式 - 与首页文章模块图文列表保持一致 */
.zhuige-shop-article-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zhuige-shop-article-item {
    display: flex;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zhuige-shop-article-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.zhuige-shop-article-thumb {
    flex: 0 0 120px;
    margin-right: 15px;
}

.zhuige-shop-article-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.zhuige-shop-article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zhuige-shop-article-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zhuige-shop-article-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zhuige-shop-article-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.zhuige-shop-article-date {
    margin-right: 15px;
}

.zhuige-shop-article-views {
    margin-right: 15px;
}

.zhuige-shop-article-comments {
    margin-right: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zhuige-shop-article-item {
        flex-direction: column;
        padding: 12px;
    }
    
    .zhuige-shop-article-thumb {
        flex: none;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .zhuige-shop-article-thumb img {
        height: 120px;
    }
    
    .zhuige-shop-article-title {
        font-size: 15px;
    }
    
    .zhuige-shop-article-excerpt {
        font-size: 13px;
    }
}

/* 无缩略图时的样式 */
.zhuige-shop-article-item.no-thumb {
    padding-left: 15px;
}

.zhuige-shop-article-item.no-thumb .zhuige-shop-article-content {
    margin-left: 0;
}