.product-list{
    padding-top: 10px;
}

/* 产品分类 */
.category-list ul{
    display: flex;
    padding: 0;
    flex-wrap: wrap;
}

.category-list ul li{
    width: 20%;
    box-sizing: border-box;
    padding: 10px;
    display: block;
}

.category-list ul li a {
    border-radius: 5px;
    display: block;
    background-color: #eaf4fe;
    text-align: center;
    padding: 3px;
}

.category-list ul li img {
    max-width: 100%;
}

.category-list ul li.on>a,
.category-list ul li:focus>a {
    border: none;
    background-color: #5FB878;
}

.category-list ul li a{
    border-left: 0 solid #5FB878;
    -moz-box-shadow: 0 0 10px #e4e4e4;
    -webkit-box-shadow: 0 0 10px #e4e4e4;
    -o-box-shadow: 0 0 10px #e4e4e4;
    box-shadow: 0 0 10px #e4e4e4;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.category-list ul li a::after {
    background: #5FB878 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    width: 100%;
    z-index: -1;
}

.category-list ul li:hover a::after {
    left: 0;
}


/* 产品列表 */
.product-list .list-box  ul{
    display: flex;
    padding: 0;
    flex-wrap: wrap;
}

.product-list .list-box  ul li{
    width: 20%;
    box-sizing: border-box;
    padding: 10px;
    display: block;
}

.product-list .list-box  ul li a{
    text-decoration: none;
}

.product-list .list-box  ul li > a > img{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.product-list .list-box ul li dl dt{
    display: flex;
}
.product-list .list-box ul li dl span{
    width: 50%;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-weight: 400;
}

.product-list .list-box ul li dl span.year {
    background-color: #2b2d42;
}
.product-list .list-box ul li dl span.hours {
    background-color: #FAB933;
}

.product-list .list-box ul li dl dd{
    background-color: #f3f3f3;
    color: #333;
    padding: 15px 8px;
    text-align: center;
    font-size: 16px;
}

.product-list .list-box ul li dl dd:hover{
    color: var(--color-hover);
}

.product-list .pages{
    padding: 20px 0 30px 0;
}


@media screen and (max-width: 768px) {
    .product-list .list-box  ul li{
        width: 50%;
    }
}    