
.product-container{
    margin-bottom: 1rem;
}
.product-title{
    font-size: .3rem;
    color: #333;
    text-align: center;
    position: relative;
    width: 3rem;
    margin:.2rem auto;
}
.product-title:before{
    content:'';
    position: absolute;
    left: -.9rem;
    top: 55%;
    width: .8rem;
    height: 2px;
    background: #a9a9a9;
}
.product-title:after{
    content:'';
    position: absolute;
    right: -.9rem;
    top: 55%;
    width: .8rem;
    height: 2px;
    background: #a9a9a9;
}

.product-list{
    margin:0 auto .35rem;
    width: 79.167%;
    max-width: 1520px;
}
/*.product-list:after{*/
    /*content: '';*/
    /*width: 100%;*/
    /*display: inline-block;*/
/*}*/
.product-item{
    display: inline-block;
    text-align: center;
}
.product-item img[src]{
    position: relative;
    animation: move 1s;
}
@keyframes move {
    0%{
        top: 1rem;
    }
    100%{
        top: 0;
    }
}

.product-list .product-name{
    font-size: .26rem;
    color: #595757;
    margin-top: .2rem;
}
.product-col-4{
    width: 33.3333%;
    float: left;
    padding: 15px;
}
.product-col-6{
    width: 48.8%;
}
.product-more{
    width: 2.06rem;
    height: .6rem;
    line-height: .6rem;
    text-align: center;
    background: #0b6ec7;
    border-radius: .3rem;
    color: #fff;
    font-size: .26rem;
    margin: 0 auto;
    cursor: pointer;
}
.product-more a{
    display: block;
}
.product-more:hover{
    opacity: .9;
}
.product-more:hover a{
    color: #fff;
}



/*详情页*/
.product-nav{
    overflow: hidden;
    line-height: .9rem;
}
.product-nav .container{
    padding: 0;
    border-bottom: 1px solid #cacaca;
}
.product-breadcrumb {
    float: left;
    font-size: .2rem;
    color: #595757;
}
.product-breadcrumb .separator{
    margin: 0 4px;
    font-family: serif,cursive,monospace;
    font-weight: 600;
}
.mid-breadcrumb .active{
    color: #0b6ec7;
}
.product-type{
    float: right;
    font-size: .2rem;
}
.product-type a{
    color: #575757;
    height: .9rem;
    display: block;
    float: left;
    padding: 0 .35rem;
}
.product-type a:first-of-type{
    border-left:1px solid #cacaca;
}
.product-type a{
    border-right:1px solid #cacaca;
}
.product-type a.active{
    background: #c9cacc;
    border: none;
}

.product-detail-title{
    font-size: .4rem;
    color: #000;
    margin: .5rem 0 .3rem;
}
.product-detail-list{
    text-align: justify;
    -ms-text-align-last: justify;
    text-align-last: justify;
}
.product-detail-list:after{
    content: '';
    display: inline-block;width: 31.8%;
}
.product-detail-list .product-detail-item{
    display: inline-block;
    width: 31.8%;
    margin-bottom: .3rem;
}
.product-detail-list .product-detail-item .product-detail-name{
    text-align: center;
    font-size: .18rem;
    line-height: 3;
    color: #595757;
    -ms-text-align-last: center;
    text-align-last: center;
}

@media screen and (max-width: 1023px) {
    .product-nav .container{
        border: none;
    }
    .product-type{
        display: none;
    }
    .product-detail-title{
        text-align: center;
        margin-top: 0;
    }

    .product-detail-list .product-detail-item{
        width: 100%;
    }
    .product-detail-list .product-detail-item .product-detail-name{
        font-size: .26rem;
    }


}
@media screen and (max-width: 450px){
    .product-more{
        line-height: .2rem;
    }
}
