.products {
    width: 100%;
    margin-top: 64px;
}

.products .products-container {
    margin: 0 auto;
}

.products-container .products-left,
.products-container .products-right {
    padding: 0px 20px;
}

.products-left .products-filter {
    padding: 20px 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}

.products-filter .filter-title {
    font-weight: bold;
    font-size: 17px;
    color: #0420B2;
}

.products-left .products-group {
    padding: 15px 0px;
    border-bottom: 1px solid #eeeeee;
}

.products-group .group-title {
    font-size: 15px;
    color: #666666;
    padding-bottom: 6px;
}

.products-group .group-item {
    font-size: 13px;
    padding: 5px 0px;
    color: #3b3939;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}


.products-right .products-query {
    height: 61px;
    line-height: 61px;
    border-bottom: 1px solid #eeeeee;
}

.products-query .query-total{
    height: 30px;
    line-height: 30px;
}

.products-query .query-orderby{
    height: 30px;
    line-height: 30px;
}


.products-right .products-banner {
    width: 100%;
    padding: 20px 0px;
    font-size: 0;
}

.products-right .products-banner img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.products-right .products-items {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px 16px;
}

.products-right .products-none{
    height: 40px;
    line-height: 30px;
    text-align: center;
    font-style: italic;
}

.products-keyword span {
    color: #0420B2;
    font-weight: bold;
}

.products-items .products-item {
    width: 210px;
/*    height: 100%;*/
/*    min-height: 365px;*/
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

.products-items .products-item:hover {
    border: 1px solid #cccccc;
}

.products-item .products-cover {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-cover img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.products-item .products-name {
    width: 100%;
    margin-top: 5px;
    height: 50px;
    /* line-height: 20px; */
    color: #3b3939;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
}

.products-item .products-price {
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #202a4e;
    font-size: 18px;
    font-weight: 600;
}

.products-item .products-btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
}

.products-right .products-page {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}

.products-page .page-total {
    font-size: 16px;
    color: #3b3939;
    height: 50px;
    line-height: 50px;
}

.products-page .page-items {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    height: 50px;
    line-height: 50px;
    padding-left: 0;
    list-style: none;
    margin: 0;
}

@media screen and (min-width: 0px) and (max-width: 1280px) {
    .products-items .products-item {
        width: calc(50% - 8px);
    }
    .products-page .page-total{
        text-align: center;
    }
    .products-page .page-items{
        justify-content: center;

    }
}


.page-item .page-link {
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: inline-block;
    text-align: center;
    margin-left: 5px;
    color: #0420B2;
    background-color: #ffffff;
    border: 1px solid #0420B2;
    border-radius: 32px;
}

.page-item-active .page-link {
    background-color: #0420B2;
    color: #ffffff;
}
.page-item-disabled .page-link {
    cursor: auto;
    background-color: #eeeeee;
    color: #bbbbbb;
    border: 1px solid #eeeeee;
}

.page-item .page-link:hover{
    background-color: #0420B2;
    color: #ffffff;
}

.page-item-disabled .page-link:hover{
    background-color: #eeeeee;
    color: #bbbbbb;
}