/* 产品中心 */
.product {

    padding-top: 40px;
}

.product .list {
    display: flex;
    flex-wrap: wrap;
}

.product .item {
    box-sizing: border-box;
    width: 23%;
    margin: 0px 1%;
    margin-bottom: 20px;
}

.product .item .item-top {
    box-shadow: 2px 2px 6px #f0f0f0,
        2px -2px 6px #f0f0f0,
        -2px 2px 6px #f0f0f0,
        -2px -2px 6px #f0f0f0;
    padding: 10px;
    border-radius: 4px;
}

.product .item .item-top img {
    width: 100%;
    margin: auto;
}

.product .item .item-bottom {
    text-align: center;
    line-height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0px 30px;
}


/* 产品详情 */
.product-detail .name{
    line-height: 80px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.product-detail .desc {
    line-height: 24px;
}
.product-detail .desc img{
    width: 60%;
    margin: auto;
}
.product-detail .desc p{
    padding: 30px 0px;
}

@media screen and (max-width: 800px) {

    /* 产品中心 */
    .product .item {
        width: 100%;
        margin: 0px 16% 20px 16%;
    }
        .product .item .item-bottom {
            width: 200px;
        }
    .product-detail .name {
        line-height: 50px;
    }

    .product-detail .desc {
        padding: 0px 20px;
    }
    .product-detail .desc img{
        width: 100%;
    }


}
