/* 插件应用商店 - 前台样式 */
.store-plugin-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.store-plugin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* 截断多行文本 */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 插件详情描述 */
.store-description {
    line-height: 1.7;
    word-break: break-word;
}
.store-description img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* 轮播图 */
#storeCarousel .carousel-inner {
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}
#storeCarousel .carousel-item img {
    object-fit: contain;
    max-height: 400px;
    width: 100%;
}