  /* 商品展示画册样式 */
  .showcase-container {
    background: linear-gradient(135deg, #000000 0%, #c3cfe2 100%);
    /* min-height: 100vh; */
    padding: 2rem 0;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}


.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.1); */
}

.showcase-subtitle a{
    font-size: 1.1rem;
    color: #ffffff !important;
    margin: 0;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.showcase-subtitle a:hover {
    color: #dadada !important;
    text-decoration: none;
}

/* 商品卡片样式 */
.showcase-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* /* .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
} */


.showcase-image {
    width: 100%;
    height: 495px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-image:hover {
    transform: scale(1.02);
}

.showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(0,0,0,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .showcase-image::before {
    opacity: 1;
}

.showcase-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.showcase-brand {
    font-size: 0.9rem;
    color: #95a5a6;
    font-weight: 500;
    /* margin-bottom: 0.5rem; */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* SEO友好模式：完整标题样式 */
.showcase-item-title.seo-full {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 允许最多3行 */
    line-clamp: 3; /* 标准属性 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word; /* 更自然的换行 */
    word-wrap: break-word;
}




/* 响应式设计 */
@media (max-width: 1400px) {
    .showcase-image {
        height: 450px;
    }
}

@media (max-width: 1200px) {
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .showcase-image {
        height: 420px;
    }
}

@media (max-width: 992px) {
    .showcase-image {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
    }
    
    .showcase-image {
        height: 350px;
    }
    
    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .showcase-image {
        height: 320px;
    }
    
    .showcase-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .showcase-image {
        height: 300px;
    }
}

/* 加载动画 */
.showcase-card {
    animation: fadeInUp 0.6s ease forwards;
}
.showcase-card a{
    text-decoration: none;
}

.showcase-card:nth-child(1) { animation-delay: 0.1s; }
.showcase-card:nth-child(2) { animation-delay: 0.2s; }
.showcase-card:nth-child(3) { animation-delay: 0.3s; }
.showcase-card:nth-child(4) { animation-delay: 0.4s; }
.showcase-card:nth-child(5) { animation-delay: 0.5s; }
.showcase-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}