.content{
    width: 74%;
    min-width: 1300px;
    margin: auto;
}
@media screen and (max-width:1400px) {
    .content{
      width: 94%;
      min-width: auto;
    }
  
}

.pro_list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
 
    flex-wrap: wrap;
    gap: 2%;
    margin-top: 2.2%;
}
.pro_list li{
    width: 100%;
    text-align: center;
    overflow: hidden;
    box-shadow: 0px 8px 8px 0px rgb(247, 252, 247);
}
.pro_list li:hover img{
    scale: 1.1;
}
.pro_list li:hover  h2{
    color: rgb(45, 141, 41);
    transition: all 0.5s;
}
.pro_list li .img_100{
    aspect-ratio: 1/1;
    width: 100%;
    overflow: hidden;
}
.pro_list li  img{
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pro_list h2{
    color: rgb(51, 51, 51);
    font-size: 1vw;
    margin: 4% 0 6%;
        overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.pro_list a{
    color: rgb(45, 141, 41);
    font-size: .8vw;
    margin-bottom: 15%;
    display: block;
}
.pages{
    margin-bottom: 6%;
}
.pages section{
    width: 55%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85vw;

}
input{
    border: none;
    outline: none;
}
.pages span,.pages input{
    width: 2.5vw;
    line-height: 1.75vw;
    box-sizing: border-box;
    border: 1px solid rgb(231, 235, 243);
    background: rgb(255, 255, 255);
    text-align: center;
}
.pages .lv{
    border: none;
    background:none;

}
.pages .active{
    background-color: rgb(45, 141, 41);
    color: white;
}

@media screen and (max-width:1400px) {
    .pro_list li{
        width: 100%;
        padding-bottom: 10px;

    }
    .pro_list h2{
        font-size: 20px;
    }
    .pro_list a{
        font-size: 16px;
    }
    .pro_list li:nth-child(n+10){
        display: none;
    }
}
@media screen and (max-width:850px){
    .pro_list li:nth-child(n+7){
        display: none;
    }
    .pro_list a{
        margin-bottom: 0;
    }
     .pro_list a{
         font-size: 12px;
     }
    .pro_list h2{
        font-size: 14px;
    }
    .pro_list{
        
        grid-template-columns: repeat(2, 1fr);
    }
 
}
