﻿/*Product List*/
.listProduct{
    width:100%;
    height:auto;overflow:hidden;
}
.listProduct li{
    width:22%;float: left;
    height:auto;overflow:hidden;
    border-bottom:1px solid #eee;
    margin:10px 1.5%;
    transition:all 0.5s;
}
.listProduct li:hover{
    border-bottom:1px solid #ed6d00;
}
.listProduct li .pic{
    width:100%;
    transition:all 0.5s;
}
.listProduct li .pic img{
    width:100%;
}
.listProduct li .word{
    width:100%;
}
.listProduct li .word h2{
    width:100%;
    height:40px;line-height:40px;
    overflow:hidden;
    font-size:20px;
    margin-top:10px;
}
.listProduct li .word h3{
    width:100%;
    height:30px;line-height:30px;
    overflow:hidden;
    word-wrap:break-word;
    font-size:14px;
    color:#666;
    margin:10px 0;
}
.listProduct li .word h3 span{
    background-color:#ed6d00;
    float:right;
    padding:0 5px;
    color:#fff;
    border-radius:5px;
    font-size:14px;
}



/*产品详情*/
.prdouctShowMain{
    width:100%;
}
.productShowPic {
    width: 48%;
    float: left;
    margin-right: 2%;
    text-align: center;
    padding: 10px 0;
}

    .productShowPic img {
        width: 90%;
        border: 1px solid #c7c7c7;
    }

.productShowDesc {
    width: 50%;
    float: left;
    padding-top: 10px;
}

    .productShowDesc h1 {
        width: 100%;
        height: auto;
        overflow: hidden;
        line-height: 40px;
        font-size: 28px;
        font-weight: bold;
    }

    .productShowDesc s {
        width:50px;
        height:4px;
        background-color:#ed6d00;
        display:block;
        margin-bottom: 40px;
    }

    .productShowDesc h3 {
        width: 100%;
        height: auto;
        overflow: hidden;
        line-height: 30px;
        color:#666;
        margin:10px auto;
    }

    .productShowDesc span{
        background-color:#ed6d00;
        padding:0 5px;
        color:#fff;
        border-radius:5px;
        font-size:14px;
        display: block;
        width:130px;
        text-align: center;
    }


.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){
    /*Product List*/
    .listProduct li{
        width:98%;
        margin:10px 1%;
    }

    /*产品详情*/
    .prdouctShowMain{
        width:100%;
    }
    .productShowPic {
        width:100%;
        margin-right: 0;
    }
    .productShowDesc {
        width:100%;
        padding-top: 10px;
        margin-bottom: 20px;
    }
}