@media screen and (max-width: 767px) {
    .comp-productlist-container {
        padding: 0 !important;
    }

    .comp-productlist-container {
        min-height: 300px !important;
    }

    .comp-productlist-item {
        width: 46% !important;
        height: auto !important;
        margin: 8px 2% !important;
    }

    .comp-productlist-info-container {
        padding: 8px !important;
        height: auto !important;
    }

    .comp-productlist-title {
        line-height: 1.7;
    }
}

.comp-productlist-container {
    padding: 12px;
    /*border: 1px solid #DDD;*/
    border-top: none;
    min-height: 500px;
}

.comp-productlist-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.comp-productlist-item {
    width: 260px;
    height: 305px;
    overflow: hidden;
    margin: 10px;
    box-shadow: #000 0 0 20px;
}

.comp-productlist-link {

}

.comp-productlist-img-container {
    border: 1px solid #DDD;
    /*height: 180px;*/
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    /*padding: 5px;*/
    position: relative;
    background-color: #FFF;
}

.comp-productlist-img {
    position: absolute;

    max-width: 110%;
    max-height: 110%;
	width: 90%;
    height: 90%;
	-webkit-transition: width 0.4s, height 0.4s,  
	transition-duration：width 0.4s, height 0.4s, transform 0.4s;
}
.comp-productlist-list img:hover{
    position: absolute;
    max-width: 110%;
    max-height: 110%;
	width: 100%;
    height: 100%;
}

.comp-productlist-info-container {
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    background-color: #FFF;
    padding: 15px 20px;
    box-sizing: border-box;
}

.comp-productlist-title {
    width: 100%;
    height: auto;
    font-size: 16px;
    /*font-weight: bold;*/
    /*text-align: center;*/
    line-height: 2;
}

.comp-productlist-btn {
    width: 100%;
    text-align: right;
}

.comp-productlist-btn a {
    display: inline;
    font-size: 14px;
    color: #333;
    background-color: #EEE;
}