
.banner-product{
    background-image: url('../images/product_banner.jpg')!important;
}

.banner-product h2,.banner-product h5{
    color: #fff!important;

}

/* 产品列表 */
.product-container{
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 80px;
    padding-bottom: 100px;
}

.product-title-list{
    width: 1080px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 35px;
}

.product-title-item{
    margin: 0 26px;
    padding: 0 25px;
    line-height: 42px;
    border-radius: 40px;
    font-size: 20px;
    white-space: nowrap;
    font-family: Microsoft YaHei;
    font-weight: bold;
    cursor: pointer;
    color: #343434;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.product-title-item:hover{
    color: #D80C18;
}
.product-title-active{
    color: #fff!important;
    background: #D80C18;
}


.product-list-item{
    width: 1105px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.product-list-container{
    
}

.product-item{
    width: 255px;
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
    margin-right: 20px;
    cursor: pointer;   
    overflow: hidden;
}
.product-item:nth-child(4),.product-item:nth-child(8){
    margin-right: 0!important;
}
.product-pic {
    width: 100%;
    height: 355px;
    display: block;
}
.product-name {
    width: 100%;
    height: calc(100% - 360px);
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    background: #F5F5F5; 
    -webkit-transition: all .3s; 
    -o-transition: all .3s; 
    transition: all .3s;
}

.product-item:hover .product-name{
    color: #fff;
    background: crimson;
}

/* 产品详情弹出层 */
.product-detail-modal{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, .5);
    display: none;
}

.product-detail-inner{
    width: 1000px;
    height: 580px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 70px 40px 0;
    
}

.product-detail-pic{
    width: 454px;
    height: 454px;
    border-radius: 50%;
    overflow: hidden;
    background-image: url('../images/swiper_bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

}
.product-detail-pic img{
    width: 230px;
    height: 325px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}

.product-detail-introduce{
    width: 410px;
}

.product-detail-introduce h6{
    width: 100%;
    line-height: 44px;
    border-bottom: 1px solid #CCCCCC;
    letter-spacing: 2px;
    font-size: 24px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    margin-bottom: 33px;

}
.product-detail-introduce p{
    text-indent: 2em;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    line-height: 26px;
    color: #333333;
}

.close-btn{
    font-size: 30px;
    color: #999;
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: 32px;
    cursor: pointer;
}


