﻿/*list*/
.listProduct{
    width:100%;
    height:auto;overflow:hidden;
}
.listProduct li{
    width:21%;float:left;
    margin:20px 1%;
    background-color:#fff;
    padding:20px 1% 40px 1%;
    transition:all 0.5s;
}
.listProduct li:hover{
    box-shadow:0 0 10px #ccc;
}
.listProduct li div{
    width:100%;
}
.listProduct li div img{
    width:100%;
}
    .listProduct li h2{
        width:100%;
        height:50px;line-height:50px;
        overflow:hidden;
        text-align:center;
        font-size: 18px;
        font-family: 'Cabin';
        text-transform: uppercase;
    }
    .listProduct li h3{
        width:100%;
        line-height:25px;
        text-align:center;
    }
        .listProduct li h3 span {
            display:inline-block;
            padding: 0px 10px;
            background-color: #144591;
            color:#fff;
            transition:all 0.5s;
            font-size:12px;
        }
        .listProduct li h3 span:hover{
            background-color:#14284a;
        }


/*产品详情*/
.productShowContent {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 30px;
    font-size: 16px;
    margin: 50px auto;
}

    .productShowContent img {
        max-width: 100%;
        margin: 5px 0;
    }

@media(max-width:720px){

    .listProduct li{
        width:92%;
        margin:20px 2%;
        padding:20px 2% 40px 2%;
    }
    

  
}