.store-details-container {
    width: 100%;
    /*height: 1000px;*/
    height: auto;
    background-color: #f5f9fa;
}

.store-details-content {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*justify-content: center;*/
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 90px 0;
    /*border: 1px solid #f1132d;*/
}

.store-categories {
    /*display: flex;*/
    justify-content: center;
    /*margin-bottom: 20px;*/
    /*border-bottom: 1px solid #eee;*/
    display: flex;
    gap: 10px; /* 控制两个按钮之间的间距 */
    margin-bottom: 20px;
}

.category-item {
    /*padding: 10px 20px;*/
    /*cursor: pointer;*/
    /*border-bottom: 2px solid transparent;*/
    /*font-size: 20px;*/
    /*flex: 1; !* 两个按钮等宽 *!*/
    width: 200px;
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
    color: #333;
    /*background-color: #4a90e2; !* 浅蓝色背景 *!*/
    border: 1px solid #5d91a3;
    cursor: pointer;
    /*transition: background-color 0.3s ease;*/
    /*border-radius: 4px;*/

}

.category-item.active {
    /*border-bottom: 2px solid #ff6600;*/
    color: #fff;
    background-color: #5d91a3; /* 激活状态颜色加深 */
    /*border-color: #333;*/

}

.image-category {
    display: block;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    /*margin-bottom: 10px;*/
    gap: 20px;
    margin: -5px;
}

.image-item {
    flex: 0 0 calc(33.333% - 30px);
    /*margin-right: 10px;*/
    /*position: relative;*/
    margin: 5px;
    box-sizing: border-box;
}

.image-item:last-child {
    margin-right: 0;
}

.image-item img {
    width: 100%;
    /*height: auto;*/
    height: 350px;
    display: block;
    /*object-fit: cover;*/
    object-fit: fill;
}

/**/


.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.page-info {
    font-size: 12px;
    color: #666;
    margin-right: 10px;
}

.page-link {
    font-size: 12px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.page-link.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.page-link:hover {
    background-color: #f0f0f0;
}

.page-current{
    font-size: 12px;
    color: #666;
    margin-right: 10px;
}
/**/