.banner-con{
    background: url(../images/product-center-banner.jpg) top left no-repeat;
    min-height: 680px;
    color: #ffffff;
}
.banner-con .banner{
    width: 100%;
}
.banner-con .banner p{
    max-width: 650px;
    margin: 30px 0;
}
.banner-con .banner a{
    color: #1a1a1a;
    width: 200px;
    height: 40px;
    background: #fdb825;
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 3px;
}
.cate-nav-menu ul li{}
.cate-nav-menu ul li a{
    display: block;
    color: #333333;
    width: 210px;
    height: 160px;
    border: 1px dotted #cacaca;
}
.cate-nav-menu ul li.active a{
    background: #02408b;
    color: #ffffff;
}

.cate-nav-menu ul li a:before{
    content: "";
    
}
.cate-nav-menu ul li:nth-child(1) a:before{
    background: url(../images/mobile-yellow.png) center center no-repeat;
    width: 123px;
    height: 45px;
    background-size: contain;
}
.cate-nav-menu ul li:nth-child(2) a:before{
    background: url(../images/crusher-yellow.png) center center no-repeat;
    width: 71px;
    height: 45px;
    background-size: contain;
}
.cate-nav-menu ul li:nth-child(3) a:before{
    background: url(../images/sand-yellow.png) center center no-repeat;
    width: 82px;
    height: 45px;
    background-size: contain;
}
.cate-nav-menu ul li:nth-child(4) a:before{
    background: url(../images/grinding-yellow.png) center center no-repeat;
    width: 65px;
    height: 45px;
    background-size: contain;
}
.cate-nav-menu ul li:nth-child(5) a:before{
    background: url(../images/beneficiation.png) center center no-repeat;
    width: 110px;
    height: 45px;
    background-size: contain;
}
.product-list-con .product-list .title-bg{
    text-align: center;
    position: relative;
}
.product-list-con .product-list .title-bg:before{
    content: "stone crusher";
    text-transform: uppercase;
    font-size: clamp(32px,6vw,48px);
    color: #f5f6f7;
    font-weight: bold;
}
.product-list-con .product-list .title-bg h2{
    margin-top: -45px;
}
.product-list-con .product-list ul{
    gap: clamp(15px,2vw,30px);
    margin-top: 30px;
}
.product-list-con .product-list ul li{
    background: #ebeced;
    width: calc((100% - clamp(15px,2vw,30px)*3) / 4);
    position: relative;
    transition: all .5s ease;
}
.product-list-con .product-list ul li::after{
    content: "";
    width: 0;
    height: 4px;
    background: #02408b;
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: all .5s ease;
}
.product-list-con .product-list ul li:hover{
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 20%);
}
.product-list-con .product-list ul li:hover:after{
    width: 100%;
    left: 0;
}
.product-list-con .product-list ul li a{
    text-align: center;
    padding: 20px;
    display: block;
}
.product-list-con .product-list ul li a img{
    margin: 0 auto;
}
.product-list-con .product-list ul li a .title{
    font-size: 18px;
    margin-bottom: 5px;
}
.product-list-con .product-list ul li a .capacity{
    color: #666666;
}
.product-list-con .product-list ul li a .more{
    color: #1a1a1a;
    width: fit-content;
    margin: 20px auto 0;
    border-bottom: 1px solid #1a1a1a;
    transition: all .5s ease;
}
.product-list-con .product-list ul li:hover .more{
    color: #02408b;
    border-bottom: 1px solid #02408b;
}

@media (max-width:1200px){
    .cate-nav-menu ul li{
        flex: 1;
    }
    .cate-nav-menu ul li a{
        width: auto;
    }
}

@media (max-width:768px){
    .cate-nav-menu{
        overflow-x: auto;
    }
    .cate-nav-menu ul{
        white-space: nowrap;
        display: block!important;
    }
.cate-nav-menu ul li{
  display: inline-block;
  width: 200px;
}
.product-list-con .product-list ul li{
    width: calc((100% - clamp(15px, 2vw, 30px)) / 2);
}

}