.content{
    width: 1200px;
    margin: 40px auto;
}
.content .title{
    margin-bottom: 20px;
}
.content .search-input{
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 10px;
    font-size: 16px;
    color: #666;
    outline: none;
    float: left;
}
.content .search-btn{
    width: 120px;
    height: 40px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    outline: none;
    cursor: pointer;
    line-height: 40px;
    text-align: center;
    float: left;
    margin-left: -120px;
    background: #15499A url(../images/search-btn.png) no-repeat 10px center;
    background-size: 20px 20px;
    padding-left: 20px;
}

.content .search-result{
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.content .search-result .search-result-title{
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}
.content .search-result .search-result-count{
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}


.content .products-list{
    width: 100%;
}
.content .products-list ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.content .products-list li{
    width: 32%;
    margin-right: 2%;
    position: relative;
    overflow: hidden;
    padding: 10px;
    margin-top: 20px;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
}
.content .products-list li:nth-child(3n){
    margin-right: 0;
}
.content .products-list li .product-list-img{
    width: 100%;
    aspect-ratio: 273 / 224;
    overflow: hidden;
}
.content .products-list li .product-list-img img{
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}
.content .products-list li .product-list-title{
    font-weight: bold;
    font-size: 15px;
    color: #262626;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 10px;
    text-align: center;
}
.content .products-list li .product-list-more{
    margin-top: 10px;
    font-size: 13px;
    color: #15499A;
    line-height: 21px;
    text-align: center;
}
.content .products-list li:hover{
    border: 1px solid #15499A;
}
.content .products-list li:hover .product-list-title{
    color: #15499A;
}
.content .products-list li:hover .product-list-img img{
    transform: scale(1.1);
}

.content .pagination{
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .content{
        width: 900px;
    }
}
@media only screen and (max-width: 1000px) {
    .content{
        width: 700px;
    }
    .content .products-list li{
        padding: 5px;
    }
    .content .products-list li .product-list-title{
        font-size: 12px;
        line-height: 18px;
    }
    .content .products-list li .product-list-more{
        font-size: 12px;
        margin-top: 0;
    }
}