@charset "utf-8";
.product_list{
    width: 100%;
    min-height: 480px;
    margin: 20px auto 0;
}
.product_list li {
    float: left;
    width: 278px;
    margin: 0 0 9px;
}
.product_list li:nth-child(2) ,
.product_list li:nth-child(5) ,
.product_list li:nth-child(8){
    margin: 0 20px;
}
.product_list li .img {
    display: block;
    width: 100%;
    height: 194px;
    line-height: 190px;
    text-align: center;
    background: #fff;
    box-shadow: 0 1px 3.5px #b0b0b0;
    transition: all .3s linear;
    overflow: hidden;
}
.product_list li img {
    display: inline-block;
    vertical-align: middle;
    max-height: 194px;
}
.product_list .caseName{
    width: 100%;
    height: 37px;
    line-height: 37px;
    color: #333;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.product_list li:hover .caseName{
    color: #a40000;
}

.product_list li:hover .img {
    box-shadow: 0 8px 16px rgba(7, 17, 27, 0.3);
}

