/*产品列表*/
.listProduct{
    width:100%;
    height: auto;overflow: hidden;
}
.listProduct li{
    width:48%;float: left;
    height: auto;overflow: hidden;
    position: relative;
    margin:20px 1%;
    background: #f1f1f1;
}
.listProduct li::before{
    content: "";
    width:100%;
    height: 0;
    position: absolute;
    top:50%;
    left: 0;
    transition: all 0.5s;
    background: linear-gradient(45deg,#018cd2,#3bbdfe);
    z-index: -1;
}
.listProduct li:hover{
    background:none;
}
.listProduct li:hover .listProductContent{
    color:#fff;
}
.listProduct li:hover .listProductContent h3{
    color:#fff;
}
.listProduct li:hover:before{
    height: 100%;
    top:0;
}
.listProductImg{
    width:40%;float: left;
    margin-right: 5%;
}
.listProductImg img{
    width:100%;
    height: 260px;
}
.listProductContent{
    width:53%;float: left;
    height: auto;overflow: hidden;
    margin-top:30px;
    margin-bottom: 20px;
    margin-right: 2%;
}
.listProductContent h2{
    line-height: 30px;
    font-size: 18px;
}
.listProductContent h3{
    height: 100px;overflow: hidden;
    line-height: 25px;
    font-size: 13px;
    color:#666;
    margin-top: 10px;
}



/*产品详情*/
.productShowPic {
    width: 48%;
    float: left;
    margin-right: 2%;
    text-align: center;
    padding: 10px 0;
}

    .productShowPic img {
        width: 98%;
        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;
        color:#000;
        border-bottom: 1px solid #ccc;
        padding:20px 0;
        margin-bottom: 30px;
        margin-top:20px;
    }

    .productShowDesc h2 {
        width: 100%;
        height: auto;
        overflow: hidden;
        line-height: 30px;
        font-size: 14px;
        color: #666;
        margin:30px auto;
    }

    .productShowDesc .tel {
        width: 100%;
        height: auto;
        overflow: hidden;
        margin:20px auto;
        border-top:1px dotted #ccc;
        border-bottom: 1px dotted #ccc;
        padding:10px 0 10px 40px;
        background-image: url(/Skins/UI/Cn/Images/Icon/iconBottomTel.png);
        background-repeat: no-repeat;
        background-size: 30px 30px;
        background-position: 0 18px;
        font-size: 16px;
        line-height: 40px;
        color:#666;
    }

        .productShowDesc .tel a {
            color: #018cd2;
            font-weight: bold;
        }

            .productShowDesc .tel a:hover {
                color:#3bbdfe;
            }
.productShowDesc .link{
    width:100%;
    height: auto;
    overflow: hidden;
}
.productShowDesc .link a{
    display: inline-block;
    line-height: 40px;
    padding:0 30px;
    color:#fff;
    border-radius: 5px;
    transition: all 0.5s;
    margin:10px 10px;
}
.productShowDesc .link a:hover{
    box-shadow: 0 0 10px #ccc;
}
.productShowDesc .link .desc{
    background-color: #018bd4;
}
.productShowDesc .link .recommend{
    background-color: #e90113;
}

.productShowTitle{
    width:100%;
    height: auto;overflow: hidden;
    border-bottom: 1px solid #dddddd;
}
.productShowTitle h3{
    display: inline-block;
    padding:10px 50px;
    background:linear-gradient(45deg,#018cd2,#3bbdfe);
    color:#fff;
    font-size: 18px;
    font-weight: bold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    letter-spacing: 1px;
}

.productShowContent {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 30px;
    font-size: 16px;
    margin: 50px auto;
}

    .productShowContent img {
        max-width: 100%;
        margin: 5px 0;
    }

.productShowRecommendList {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 50px;
}

    .productShowRecommendList li {
        width: 23%;
        float: left;
        margin: 20px 1%;
        transition: all 0.5s;
        border-radius: 10px;
        box-shadow: 0 0 10px #eee;
    }

        .productShowRecommendList li:hover {
            margin: 10px 1% 30px 1%;
            box-shadow: 0 0 10px #ccc;
        }

        .productShowRecommendList li div {
            width: 100%;
        }
            .productShowRecommendList li div img {
                width: 100%;
                height: 260px;
                border-top-left-radius: 10px;
                border-top-right-radius: 10px;
            }

        .productShowRecommendList li h2 {
            width: 100%;
            height: 50px;
            line-height: 50px;
            overflow: hidden;
            text-align: center;
            font-size: 16px;
        }

@media(max-width:768px){
    /*产品列表*/
    .listProduct li{
        width:98%;
    }
    .listProductImg{
        width:100%;
        margin-right: 0;
    }
    .listProductImg img{
        width:100%;
        height: auto;
    }
    .listProductContent{
        width:94%;
        margin-right: 0;
        padding:10px 3%;
        margin-top:10px;
    }
    .listProductContent h3{
        height: 50px;
        margin-top: 10px;
    }

/*产品详情*/
.productShowPic {
    width: 100%;
    margin-right: 0;
    padding: 10px 0;
}

.productShowDesc {
    width: 100%;
    padding-top: 10px;
}

    .productShowDesc h1 {
        margin-top:10px;
    }

    .productShowDesc h2 {
        margin:10px auto;
    }


.productShowDesc .link a{
    padding:0 20px;
    margin:5px 5px;
}

.productShowTitle h3{
    padding:10px 30px;
    font-size: 16px;
}

    .productShowRecommendList li {
        width: 98%;
        margin: 20px 1%;
    }

            .productShowRecommendList li div img {
                height: 220px;
            }



}<!--0.00020098686218262-->