.feature-container {
    width: 100%;
    height: auto;
    /*background-color: #fbf2f2;*/
    background-color: #ffffff;
}

.feature-content {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*justify-content: center;*/
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 50px 0;
    /*border: 1px solid #f1132d;*/
}

.feature-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
}

.filter-btn.active {
    background: #409eff;
    color: white;
    border-color: #409eff;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.feature-item {
    /*border-radius: 8px;*/
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-category {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50%;
    background: rgba(255,255,255,0.9);
    /*color: white;*/
    color: #000000;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    margin: 0 auto; /* 添加自动外边距 */
}

.feature-title {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #5d91a3;
}

.feature-store {
    padding: 5px 10px;
    text-align: center;
    color: #666;
    font-size: 12px;
}

/*.pagination {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    margin-top: 20px;*/
/*}*/

/*.page-info {*/
/*    font-size: 12px;*/
/*    color: #666;*/
/*}*/

/*.page-link {*/
/*    padding: 5px 10px;*/
/*    border: 1px solid #ddd;*/
/*    background: white;*/
/*    cursor: pointer;*/
/*}*/

/*.page-link.active {*/
/*    background: #409eff;*/
/*    color: white;*/
/*    border-color: #409eff;*/
/*}*/


.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;
}
