.product-list{ margin-bottom:20px;}
.product-list > div {
    float: left;
    width: calc(25% - 0px);
    border: 1px solid #FFF;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    margin: 0px -1px -1px 0;
}

.product-list > div > .img {
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.product-list > div > .img img {
    width: 100%;
    display: block;
}

.product-list > div > .img .space + img {
    width: auto;
    max-width: 100%;
    max-height: 100%; /*關鍵高設定*/
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 1;
}

.product-list > div > .img img + img {
    position: relative;
    width: 100%;
}

.product-list > div > h3{
    padding: 0 10px;
	font-size:16px;
	font-weight:600;
	font-family:Arial;
}

.product-list > div > h3 a{
    display: block;
    line-height: 20px;
    height: 60px;
    overflow: hidden;
	color:#333;
}
.product-list > div:hover > h3 a{ color:#2656D2; font-weight:800;}

.product-list > div:hover {
    box-shadow: 1px 1px 5px #aaa;
    -moz-box-shadow: 1px 1px 5px #aaa;
    -webkit-box-shadow: 1px 1px 5px #aaa;
    border: 1px solid #fff;
}


@media screen and (max-width: 1440px) {
    .product-list > div {
        width: calc(25% - 0px);
    }
}
@media screen and (max-width: 1024px) {
    .product-list > div {
        width: calc(33% - 0px);
    }
}


@media screen and (max-width: 640px) {
    .product-list > div {
        width: calc(50% - 0px);
    }
}

@media screen and (max-width: 360px) {
    .product-list > div {
        width: calc(100% - 0px);
    }
}