﻿.listProduct{
    width:100%;
    height:auto;overflow:hidden;
}
.listProduct li{
    width:22%;
    display: inline-block;
    margin:20px 1%;
    height: auto;overflow: hidden;
}
.listProduct li img{
    width:100%;
    transition: all 0.5s;
}
.listProduct li h2 {
    width: 100%;
    height: 50px;
    overflow: hidden;
    line-height:50px;
    background:#eee;
    text-align:center;
    font-size:14px;
    transition: all 0.5s;
}
.listProduct li:hover img{
    transform: scale(1.1);
}
.listProduct li:hover h2{
    background:#c0a283;
    color:#fff;
}




/*产品详情*/
.info_title{margin:10px 0;font:100 24px Microsoft Yahei;text-align:center;}
.info_other{text-align:center;color:#999;margin:4px 0;}
.info_other a{color:#999;}
.info_other a:hover{color:#f00;}

.info_desc{
    width:95%;
    height:auto;overflow:hidden;
    background:#f8f8f8;
    padding:5px 2%;
    border:1px solid #eee;
    margin:20px auto;
    color:#999;
}

@media(max-width:768px){

    .listProduct li{
        width:45%;
        margin:20px 2%;
    }
   
    
}