/* router */
.router-list{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D5D5D5;
}
.router-item a{
    color: #666666;
    font-size: 16px;
}
.router-itemOn a{
    color: #332C2B;
    font-size: 16px;
    font-weight: bold;
    background-color: #D5D5D5;
}
/* 产品中心 */
.proCenter-wrap{
    width: 100%;
    height: auto;
    background-color: #F2F2F2;
}
.proCenter-box{
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 50px;
}

/* 产品列表 */
.pro-list{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}
.pro-item{
    width: 407px;
    height: 460px;
    margin-top: 97px;
    position: relative;
    background-color: white;
}
.proContent{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.pro-img{
    width: 250px;
    height: 280px;
    font-size: 0;
    overflow: hidden;
}
.proText{
    width: 100%;
    height: auto;
    font-size: 24px;
    padding-top: 76px;
    text-align: center;
}
.proMask{
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 0;
}
.proMask p{
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    padding: 16px 39px;
    /* border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff; */
    position: relative;
}
.proMask p::before{
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    margin: 0 auto;
    transition: width 1.5s;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: width 1.5s;
    -moz-transition: width 1.5s;
    -ms-transition: width 1.5s;
    -o-transition: width 1.5s;
}
.proMask p::after{
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    margin: 0 auto;
    transition: width 1s;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: width 1s;
    -moz-transition: width 1s;
    -ms-transition: width 1s;
    -o-transition: width 1s;
}
/* hover效果 */
.pro-item:hover .proMask{
    opacity: 1;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
}
.pro-item:hover .proMask p::before{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin: 0 auto;
    transition: width 1s;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: width 1s;
    -moz-transition: width 1s;
    -ms-transition: width 1s;
    -o-transition: width 1s;
}
.pro-item:hover .proMask p::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin: 0 auto;
    transition: width 1s;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: width 1s;
    -moz-transition: width 1s;
    -ms-transition: width 1s;
    -o-transition: width 1s;
}
/* 分页 */
.pageNum-wrap{
    margin-top: 80px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.pageNum{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prevBtn,.nextBtn{
    cursor: pointer;
    display: inline-block;
    width: 86px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #969696;
    font-size: 12px;
    border-radius: 2px;
    background-color: #E6E6E6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.page-list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page-item a{
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    color: #666666;
    font-size: 12px;
    margin-left: 15px;
    border-radius: 2px;
    background-color: #E6E6E6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.page-item:last-child a{
    margin-right: 15px;
}
.page-itemOn a{
    color: #ffffff;
    background-color: #332C2B;
}
@media screen and (max-width:768px){
    .router-list{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        background-color: #D5D5D5;
    }
    .pro-list {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

}