.typeList{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.typeListItem{
    width: 140px;
    padding: 0 40px;
    line-height: 50px;
    font-size: 14px;
    color: #333;
    border: 1px solid #DDDDDD;
    border-right: none;
    cursor: pointer;
}
.typeListItem:last-child{
    border-right: 1px solid #DDDDDD;
}
.typeListItemActived{
    background: #1890FF;
    color: #fff;
}
.productList{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.productItem{
    width: 24%;
    /* height: 300px; */
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}
.productItem img{
    width: 100%;
    /* height: 200px; */
}
.productItem_info{
    background: #F5F5F5;
    height: 100px;
    padding: 24px 0;
    text-align: center;
    cursor: pointer;
}
.productItem:hover .productItem_info{
    background: #1890FF;
    color: #fff;
}
.productItem:hover {
    border: 1px solid rgba(24, 144, 255, .55);
}

.productItem_info p:first-child{
    height: 18px;
    line-height: 18px;
    color: #333;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowarp;
}
.productItem_info p:last-child{
    height: 14px;
    line-height: 14px;
    color: #999;
    margin-top: 18px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowarp;
}
.productItem:hover .productItem_info p{
    color: #fff;
}
.example{
    margin: 16px 0 88px;
}
.pagination{
    text-align: center;
    justify-content: center
}
.page-item{
    margin-right: 5px;
    background: #EFEFEF;
}
.pageTitle{
    width: 730px;
    height: 115px;
    margin-bottom: 76px;
    background-size: 100%;
    background-image: url('./../images/cpzx/Productcenter.png');
}
@media (max-width: 992px) {
    .pageTitle{
        width: 80%;
        padding-top: 0.1px;
        margin-bottom: 40px;
    }
    .container{
        max-width: 100%!important;
    }
    .productList{
        padding: 0 20px;
    }
    .productItem{
        width: calc(50% - 15px);
    }
    .productItem_info{
        padding: 0;
    }
    .productItem_info p:first-child{
        height: 32px;
        line-height: 32px;
        color: #333;
        font-size: 32px;
		display: -webkit-box;
		overflow: hidden;
		white-space: normal !important;
		text-overflow: ellipsis;
		word-wrap: break-word;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
    }
    .productItem_info p:last-child{
        height: 28px;
        line-height: 28px;
        color: #999;
        margin-top: 18px;
        font-size: 28px;
		display: -webkit-box;
		overflow: hidden;
		white-space: normal !important;
		text-overflow: ellipsis;
		word-wrap: break-word;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
    }
    .productItem_info p{
        margin-top: 12px;
    }
    .typeListItem{
        padding: 0;
        font-size: 28px;
        line-height: 60px;
        text-align: center;
    }
}
