.content{
    width: 70%;
    margin: 80px auto;
}
.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;
    background-color: #fff;
    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 .product-list ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product_list .product_item{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: flex;
    cursor: pointer;
    background: #F8F8FA;
}
.product_list .product_item .product_list_item_img{
    width: 337px;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}
.product_list .product_item .product_list_item_img img{
    width: 100%;
    height: 100%;
}
.product_list .product_item .product_list_item_img::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    transform: skewX(-25deg);
}
.product_list .product_item:hover .product_list_item_img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 100%;
    }
}
.product_list .product_item .product_list_item_content{
    width: 557px;
    padding: 0 30px;
}
.product_list .product_item .product_list_item_title{
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    line-height: 57px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product_list .product_item .product_list_item_line{
    width: 100%;
    height: 1px;
    background: #EBEBEB;
}
.product_list .product_item .product_list_item_capacity{
    display: grid;
    grid-template-columns: 117px 1fr;
    font-size: 14px;
    line-height: 40px;
}
.product_list .product_item .product_list_item_capacity .product_list_item_capacity_title{
    color: #505050;
}
.product_list .product_item .product_list_item_capacity .product_list_item_capacity_value{
    color: #000000;
    font-weight: bold;
}
.product_list .product_item .product_list_item_apply{
    font-size: 14px;
    color: #000000;
    line-height: 24px;
    margin-top: 10px;
}
.product_list .product_item .product_list_item_apply .product_list_item_apply_title{
    color: #505050;
}
.product_list .product_item .product_list_item_btn{
    width: 135px;
    height: 40px;
    background: #00367D;
    border-radius: 4px;
    margin-top: 16px;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
}

@media only screen and (min-width: 1050px) and (max-width: 1440px) {
    .content{
        width: 80%;
    }
}
@media only screen and (max-width: 1050px) {
    .content{
        width: 85%;
    }
}

@media screen and (min-width: 1080px) and (max-width: 1500px) {
    .content .products-list li .product-list-info{
        padding: 10px;
    }
    .content .products-list li .product-list-info .product-list-title{
        font-size: 14px;
        line-height: 24px;
        height: 50px;
    }
    .content .products-list li .product-list-info .product-list-apply{
        font-size: 12px;
        line-height: 16px;
        max-height: 80px;
        margin-top: 5px;
    }
}

@media only screen and (max-width: 1080px) {
    .content .products-list li .product-list-info{
        padding: 10px;
    }
    .content .products-list li .product-list-info .product-list-title{
        font-size: 14px;
        line-height: 24px;

    }
    .content .products-list li .product-list-info .product-list-apply{
        display: none;
    }
}