/* 加盟博试通 - 图片切换模块 (仅限 case_category 页面使用) */
.store-showcase {
    padding: 40px 0 ;
    position: relative;
}

/* 渐变背景满屏 - 用伪元素实现 */
.store-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50vw;
    right: -50vw;
    bottom: 0;
        background: linear-gradient(to bottom, #ffffff, #eff2ff);
    z-index: -1;
}

/* 主图展示区 */
.store-showcase-main {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

/* 主图区内的图片 - content字段可能是img标签或图片URL */
.store-showcase-main img {
    width: 100%;
    object-fit: contain;
    display: block;
}

/* 底部图标导航区 - 左右对齐主图边缘，均分充满 */
.store-showcase-nav {
    display: flex;
    justify-content: stretch;
    gap: 12px;
}

.store-showcase-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    padding: 18px 8px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    user-select: none;
}

.store-showcase-tab:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(17, 95, 173, 0.15);
    border-color: rgba(17, 95, 173, 0.3);
}

/* 选中态 - 蓝色高亮 */
.store-showcase-tab.active {
    background: #115FAD;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 24px rgba(17, 95, 173, 0.35);
    transform: translateY(-4px);
}

.store-showcase-tab.active .store-showcase-tab-title {
    color: #fff;
}

.store-showcase-tab-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.store-showcase-tab.active .store-showcase-tab-icon {
}

.store-showcase-tab-title {
    line-height: 1.5;
    text-align: center;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    word-break: break-word;
}

/* 响应式 */
@media (max-width: 992px) {
    .store-showcase-nav {
        gap: 8px;
    }

    .store-showcase-tab {
        padding: 14px 6px;
    }

    .store-showcase-tab-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
    }

    .store-showcase-tab-title {
        font-size: 12px;
    }
    
    .store-showcase-main {
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .store-showcase {
        padding: 10px 0 10px;
		border-radius: 8px;
    }

    .store-showcase-nav {
        gap: 8px;
        flex-wrap: wrap; /* 允许换行 */
    }

    /* 移动端：一行3个 */
    .store-showcase-tab {
        flex: 0 0 calc(33.333% - 6px);
        padding: 12px 4px;
        border-radius: 5px;
    }

    .store-showcase-tab-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
		border-radius: 5px;
    }

    .store-showcase-tab-title {
        font-size: 11px;
    }
    
    .store-showcase-main {
        min-height: 100%;
        border-radius: 12px;
        margin-bottom: 16px;
    }
